mirror of
https://github.com/neocities/neocities.git
synced 2025-04-24 17:22:35 +02:00
turn off autocap and autocorrect for some stuff, html tutorials
This commit is contained in:
parent
4c28c11f91
commit
1f3a0095e7
5 changed files with 14 additions and 8 deletions
|
@ -10,7 +10,7 @@
|
||||||
form action="/admin/banhammer" method="POST"
|
form action="/admin/banhammer" method="POST"
|
||||||
input name="csrf_token" type="hidden" value="#{csrf_token}"
|
input name="csrf_token" type="hidden" value="#{csrf_token}"
|
||||||
p Site Name:
|
p Site Name:
|
||||||
input type="text" name="username" placeholder="edwardsnowden"
|
input type="text" name="username" placeholder="edwardsnowden" autocapitalize="off" autocorrect="off"
|
||||||
br
|
br
|
||||||
input.btn.btn-danger type="submit" value="Ban"
|
input.btn.btn-danger type="submit" value="Ban"
|
||||||
.span6
|
.span6
|
||||||
|
@ -27,7 +27,7 @@
|
||||||
form action="/admin/mark_nsfw" method="POST"
|
form action="/admin/mark_nsfw" method="POST"
|
||||||
input name="csrf_token" type="hidden" value="#{csrf_token}"
|
input name="csrf_token" type="hidden" value="#{csrf_token}"
|
||||||
p Site name:
|
p Site name:
|
||||||
input type="text" name="username" placeholder="edwardsnowden"
|
input type="text" name="username" placeholder="edwardsnowden" autocapitalize="off" autocorrect="off"
|
||||||
br
|
br
|
||||||
input.btn.btn-danger type="submit" value="Mark NSFW"
|
input.btn.btn-danger type="submit" value="Mark NSFW"
|
||||||
.span6
|
.span6
|
||||||
|
|
|
@ -77,10 +77,16 @@ javascript:
|
||||||
.span5
|
.span5
|
||||||
<i class="icon-question-sign icon-3x"></i> <span style="font-size: 20pt">Need to learn web design?</span>
|
<i class="icon-question-sign icon-3x"></i> <span style="font-size: 20pt">Need to learn web design?</span>
|
||||||
div
|
div
|
||||||
span
|
div
|
||||||
|
i class="icon-globe"
|
||||||
|
a href="http://www.htmldog.com/guides/html/beginner" target="_blank" HTML Beginner Tutorial
|
||||||
|
div
|
||||||
|
i class="icon-globe"
|
||||||
|
a href="http://www.w3schools.com/html/html_intro.asp" target="_blank" w3schools HTML introduction
|
||||||
|
div
|
||||||
i class="icon-globe"
|
i class="icon-globe"
|
||||||
a href="http://codepupil.com/" target="_blank" CodePupil.com teaches with games<br>
|
a href="http://codepupil.com/" target="_blank" CodePupil.com teaches with games<br>
|
||||||
span
|
div
|
||||||
i class="icon-globe"
|
i class="icon-globe"
|
||||||
a href="http://www.codecademy.com/tracks/web" target="_blank" Online lessons at Codecademy.com<br>
|
a href="http://www.codecademy.com/tracks/web" target="_blank" Online lessons at Codecademy.com<br>
|
||||||
|
|
||||||
|
|
|
@ -25,7 +25,7 @@ javascript:
|
||||||
.span1
|
.span1
|
||||||
h5 Username
|
h5 Username
|
||||||
.span6
|
.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
|
.row
|
||||||
.span6
|
.span6
|
||||||
|
@ -56,7 +56,7 @@ javascript:
|
||||||
.span1
|
.span1
|
||||||
h5 Tags
|
h5 Tags
|
||||||
.span6
|
.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
|
.row
|
||||||
.span6
|
.span6
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
input name="csrf_token" type="hidden" value="#{csrf_token}"
|
input name="csrf_token" type="hidden" value="#{csrf_token}"
|
||||||
|
|
||||||
fieldset
|
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: input name="password" type="password" placeholder="Your password"
|
||||||
div: button class="btn btn-large btn-success" href="#" style="margin-top: 10px" Sign in
|
div: button class="btn btn-large btn-success" href="#" style="margin-top: 10px" Sign in
|
||||||
.row
|
.row
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
form method="POST" action="/site_files/create_page" enctype="multipart/form-data"
|
form method="POST" action="/site_files/create_page" enctype="multipart/form-data"
|
||||||
input name="csrf_token" type="hidden" value="#{csrf_token}"
|
input name="csrf_token" type="hidden" value="#{csrf_token}"
|
||||||
h4 What's the name of your page?
|
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"
|
p: input.btn.btn-success.btn-large type="submit" value="Create Page"
|
||||||
|
|
||||||
.row
|
.row
|
||||||
|
|
Loading…
Add table
Reference in a new issue