diff options
author | Adam Chlipala <adamc@hcoop.net> | 2008-07-24 11:32:01 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2008-07-24 11:32:01 -0400 |
commit | 84f7c995c0ad553d3fc91d1b31f320fc9de58d79 (patch) | |
tree | b5b01d65e0f190463fac9857ecf3eb04f7892a59 /src | |
parent | 5f895c17f35466d10ef80cd7146638d8505e4e9b (diff) |
Password inputs
Diffstat (limited to 'src')
-rw-r--r-- | src/monoize.sml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/monoize.sml b/src/monoize.sml index c193e611..1dcef40a 100644 --- a/src/monoize.sml +++ b/src/monoize.sml @@ -259,7 +259,7 @@ fun monoExp (env, st) (all as (e, loc)) = fun input typ = case targs of - [(L.CName name, _)] => + [_, (L.CName name, _)] => (L'.EStrcat (tagStart "input", (L'.EPrim (Prim.String (" type=\"" ^ typ ^ "\" name=\"" ^ name ^ "\"/>")), loc)), loc) @@ -304,6 +304,7 @@ fun monoExp (env, st) (all as (e, loc)) = loc)), loc) | _ => (Print.prefaces "Targs" (map (fn t => ("T", CorePrint.p_con env t)) targs); raise Fail "No name passed to textarea tag")) + | "password" => input "password" | "ltextarea" => (case targs of [_, (L.CName name, _)] => |