diff --git a/views/settings.slim b/views/settings.slim index fd5f9bd0..2e3f04db 100644 --- a/views/settings.slim +++ b/views/settings.slim @@ -1,58 +1,59 @@ -.row - .span12.text-center - h1 Site Settings - -.row - .span12.text-center - - if !current_site.errors.empty? - .row - .span8.offset2 - .alert.alert-block.alert-error - - current_site.errors.each do |error| - p = error.last.first - -.row - .span4 - h2 Change Password - form method="POST" action="/change_password" - input name="csrf_token" type="hidden" value="#{csrf_token}" +.page + .row.content + .span12.text-center + h1 Site Settings + + .row + .span12.text-center + - if !current_site.errors.empty? + .row + .span8.offset2 + .alert.alert-block.alert-error + - current_site.errors.each do |error| + p = error.last.first + + .row + .span4 + h2 Change Password + form method="POST" action="/change_password" + input name="csrf_token" type="hidden" value="#{csrf_token}" + + div + p Current Password: + input name="current_password" type="password" + + div + p New Password: + input name="new_password" type="password" + + div + p Confirm New Password: + input name="new_password_confirm" type="password" + + input.btn-Action type="submit" value="Change Password" + .span4 + h2 Change Site (User) Name - div - p Current Password: - input name="current_password" type="password" + form method="POST" action="/change_name" + input name="csrf_token" type="hidden" value="#{csrf_token}" + + p It cannot contain spaces, and can only use the following characters: a-z A-Z 0-9 _ - - div - p New Password: - input name="new_password" type="password" + div + p Current name: #{current_site.username} + div + p New name: + input name="name" type="text" placeholder="newname" + div + input.btn-Action type="submit" value="Change Name" + + .span4 + h2 Mark Adult Content + p If your site contains objectionable (adult) content, check this box. Your site will not be removed, but it will be listed on a special browse page. We don't have an official policy on what defines "adult" content yet, we are still working on this. In the interim, best guesses. Thanks for your patience as we try to find a way to balance out the needs of everyone. + + form method="POST" action="/change_nsfw" + input name="csrf_token" type="hidden" value="#{csrf_token}" + input name="is_nsfw" type="hidden" value="false" + p: strong My page contains objectionable (adult) content:    - div - p Confirm New Password: - input name="new_password_confirm" type="password" - - input.btn.btn-success type="submit" value="Change Password" - .span4 - h2 Change Site (User) Name - - form method="POST" action="/change_name" - input name="csrf_token" type="hidden" value="#{csrf_token}" - - p It cannot contain spaces, and can only use the following characters: a-z A-Z 0-9 _ - - - div - p Current name: #{current_site.username} - div - p New name: - input name="name" type="text" placeholder="newname" - div - input.btn.btn-success type="submit" value="Change Name" - - .span4 - h2 Mark Adult Content - p If your site contains objectionable (adult) content, check this box. Your site will not be removed, but it will be listed on a special browse page. We don't have an official policy on what defines "adult" content yet, we are still working on this. In the interim, best guesses. Thanks for your patience as we try to find a way to balance out the needs of everyone. - - form method="POST" action="/change_nsfw" - input name="csrf_token" type="hidden" value="#{csrf_token}" - input name="is_nsfw" type="hidden" value="false" - p: strong My page contains objectionable (adult) content:    - - input.btn.btn-success type="submit" value="Update" \ No newline at end of file + input.btn-Action type="submit" value="Update" \ No newline at end of file diff --git a/views/signin.slim b/views/signin.slim index 4c5cea6d..5ba23990 100644 --- a/views/signin.slim +++ b/views/signin.slim @@ -1,16 +1,15 @@ -.text-center - .row - .span12 - h1 Welcome back! - .row - .span12 - form method="POST" action="/signin" +.page + .content.single-Col + h1 Welcome back! + + + form method="POST" action="/signin" input name="csrf_token" type="hidden" value="#{csrf_token}" fieldset - 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 + div: input name="username" type="text" placeholder="Your username" class="input-Area" autocapitalize="off" autocorrect="off" + div: input name="password" type="password" class="input-Area" placeholder="Your password" + div: button class="btn-Action" href="#" Sign in .row .span12 div