diff --git a/views/password_reset.slim b/views/password_reset.slim
index 91def705..8e8752c6 100644
--- a/views/password_reset.slim
+++ b/views/password_reset.slim
@@ -1,15 +1,17 @@
-.text-center
- .row
- .span12
- h1 Reset Password
- .row
- .span6.offset3.text-center
- h5 If you provided your e-mail you can reset your password. If you didn't, you will not be able to reset your password, you will need to create a new site. We will not change a password without an email entered, no exceptions.
- .row
- .span12
- form method="POST" action="/send_password_reset"
- input name="csrf_token" type="hidden" value="#{csrf_token}"
-
- fieldset
- div: input name="email" type="email" placeholder="Your email"
- div: button class="btn btn-large btn-success" href="#" style="margin-top: 10px" Send Password Reset
\ No newline at end of file
+.txt-Center.content-Base
+
+ h1 Reset Password
+
+ h5 If you provided your e-mail you can reset your password.
+ h6 If you didn't, you will not be able to reset your password.
+ p You will need to create a new account.
+ p We will not change a password without an email entered, no exceptions.
+
+ form method="POST" action="/send_password_reset"
+
+ input name="csrf_token" type="hidden" value="#{csrf_token}"
+
+ fieldset
+ input name="email" type="email" class="input-Area" placeholder="Your email"
+
+ button class="btn-Action" href="#" style="margin-top: 10px" Send Password Reset
\ No newline at end of file
diff --git a/views/settings.slim b/views/settings.slim
index 65d9aae1..856b0008 100644
--- a/views/settings.slim
+++ b/views/settings.slim
@@ -18,15 +18,15 @@
div
p Current Password:
- input name="current_password" type="password"
+ input class="input-Area" name="current_password" type="password"
div
p New Password:
- input name="new_password" type="password"
+ input class="input-Area" name="new_password" type="password"
div
p Confirm New Password:
- input name="new_password_confirm" type="password"
+ input class="input-Area" name="new_password_confirm" type="password"
input.btn-Action type="submit" value="Change Password"
@@ -42,9 +42,9 @@
p Current name: #{current_site.username}
p New name:
- input name="name" type="text" placeholder="newname"
+ input name="name" class="input-Area" type="text" placeholder="newname"
- input.btn-Action type="submit" value="Change Name"
+ input.btn-Action type="submit" value="Change Name"
.col.col-33
.content
diff --git a/views/signin.slim b/views/signin.slim
index c96dc506..ef3031ca 100644
--- a/views/signin.slim
+++ b/views/signin.slim
@@ -2,18 +2,19 @@
.content.single-Col.txt-Center
h1 Welcome back!
-
- form method="POST" action="/signin"
+ form method="POST" action="/signin" class="content"
input name="csrf_token" type="hidden" value="#{csrf_token}"
fieldset
- div: input name="username" style="height:auto!important" type="text" placeholder="Your username" class="input-Area" autocapitalize="off" autocorrect="off"
- div: input name="password" style="height:auto!important" type="password" class="input-Area" placeholder="Your password"
- div: button class="btn-Action" href="#" Sign in
+ input name="username" type="text" placeholder="Your username" class="input-Area" autocapitalize="off" autocorrect="off"
+ br
+ input name="password" type="password" class="input-Area" placeholder="Your password"
+ br
+ button class="btn-Action" href="#" Sign in
hr
p
a href="/new" title="Sign me up!" I don't have an account yet.
p
- a href="/password_reset" title="What did I huh?" I forgot my password.
\ No newline at end of file
+ a href="/password_reset" title="What did I huh?" I forgot my password.