diff options
author | Adam Carpenter <atc@53hor.net> | 2020-03-19 21:08:44 -0400 |
---|---|---|
committer | Adam Carpenter <atc@53hor.net> | 2020-03-19 21:08:44 -0400 |
commit | 7cba160564448a520c14a098ce4dd30c4bc2f06c (patch) | |
tree | c6b797032b27577d22668da5763b1372a173ad00 /src/html/index.html | |
parent | d318994d1e8684db3874c6987ed5e4cc3be66b2b (diff) | |
download | carpentertutoring-7cba160564448a520c14a098ce4dd30c4bc2f06c.tar.xz carpentertutoring-7cba160564448a520c14a098ce4dd30c4bc2f06c.zip |
cleaned up js
Diffstat (limited to 'src/html/index.html')
-rw-r--r-- | src/html/index.html | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/src/html/index.html b/src/html/index.html index d1c102c..fcd16fa 100644 --- a/src/html/index.html +++ b/src/html/index.html @@ -298,25 +298,31 @@ <div class="box"> <form name="inquiry"> <div class="field"> - <div class="control"> + <div class="control has-icons-left"> + <span class="icon"> + <i class="iconify" data-icon="mdi-account"></i> + </span> <input name="name" class="input is-rounded" type="text" placeholder="name"></input> </div> </div> <div class="field"> - <div class="control"> + <div class="control has-icons-left"> + <span class="icon"> + <i class="iconify" data-icon="mdi-email"></i> + </span> <input name="from" class="input is-rounded" type="text" placeholder="email address"></input> </div> </div> <div class="field"> <div class="control"> - <textarea name="body" class="textarea" placeholder="question/comment"></textarea> + <textarea name="body" class="textarea" placeholder="question/comment" spellcheck="true"></textarea> </div> </div> - <div class="field"> + <div class="field is-grouped is-grouped-right"> <div class="control"> <button class="button is-rounded is-primary" type="submit"> <span class="icon"> - <i class="iconify" data-icon="mdi-email-send"></i> + <i class="iconify" data-icon="mdi-check"></i> </span> <span> Submit |