turn off autocap and autocorrect for some stuff, html tutorials

This commit is contained in:
Kyle Drake 2013-07-02 11:43:41 -04:00
parent 4c28c11f91
commit 1f3a0095e7
5 changed files with 14 additions and 8 deletions

View file

@ -10,7 +10,7 @@
form action="/admin/banhammer" method="POST"
input name="csrf_token" type="hidden" value="#{csrf_token}"
p Site Name:
input type="text" name="username" placeholder="edwardsnowden"
input type="text" name="username" placeholder="edwardsnowden" autocapitalize="off" autocorrect="off"
br
input.btn.btn-danger type="submit" value="Ban"
.span6
@ -27,7 +27,7 @@
form action="/admin/mark_nsfw" method="POST"
input name="csrf_token" type="hidden" value="#{csrf_token}"
p Site name:
input type="text" name="username" placeholder="edwardsnowden"
input type="text" name="username" placeholder="edwardsnowden" autocapitalize="off" autocorrect="off"
br
input.btn.btn-danger type="submit" value="Mark NSFW"
.span6

View file

@ -77,10 +77,16 @@ javascript:
.span5
<i class="icon-question-sign icon-3x"></i>&nbsp;&nbsp; <span style="font-size: 20pt">Need to learn web design?</span>
div
span
div
i class="icon-globe" &nbsp;&nbsp;
a href="http://www.htmldog.com/guides/html/beginner" target="_blank" HTML Beginner Tutorial
div
i class="icon-globe" &nbsp;&nbsp;
a href="http://www.w3schools.com/html/html_intro.asp" target="_blank" w3schools HTML introduction
div
i class="icon-globe" &nbsp;&nbsp;
a href="http://codepupil.com/" target="_blank" CodePupil.com teaches with games<br>
span
div
i class="icon-globe" &nbsp;&nbsp;
a href="http://www.codecademy.com/tracks/web" target="_blank" Online lessons at Codecademy.com<br>

View file

@ -25,7 +25,7 @@ javascript:
.span1
h5 Username
.span6
p <input name="username" type="text" placeholder="yourusername" value="#{@site.username}">.neocities.org
p <input name="username" type="text" placeholder="yourusername" value="#{@site.username}" autocapitalize="off" autocorrect="off">.neocities.org
.row
.span6
@ -56,7 +56,7 @@ javascript:
.span1
h5 Tags
.span6
p: input name="tags" type="text" style="width: 400px" placeholder="pokemon, video games, bulbasaur" value="#{params[:tags]}"
p: input name="tags" type="text" style="width: 400px" placeholder="pokemon, video games, bulbasaur" value="#{params[:tags]}" autocapitalize="off" autocorrect="off"
.row
.span6

View file

@ -8,7 +8,7 @@
input name="csrf_token" type="hidden" value="#{csrf_token}"
fieldset
div: input name="username" type="text" placeholder="Your username"
div: input name="username" type="text" placeholder="Your username" autocapitalize="off" autocorrect="off"
div: input name="password" type="password" placeholder="Your password"
div: button class="btn btn-large btn-success" href="#" style="margin-top: 10px" Sign in
.row

View file

@ -15,7 +15,7 @@
form method="POST" action="/site_files/create_page" enctype="multipart/form-data"
input name="csrf_token" type="hidden" value="#{csrf_token}"
h4 What's the name of your page?
h4: input type="text" name="pagefilename".html
h4: input type="text" name="pagefilename" autocapitalize="off" autocorrect="off".html
p: input.btn.btn-success.btn-large type="submit" value="Create Page"
.row