aboutsummaryrefslogtreecommitdiff
path: root/wqflask
diff options
context:
space:
mode:
authorzsloan2022-12-01 20:33:42 +0000
committerzsloan2022-12-01 20:33:42 +0000
commit4365a40dee233244e12a493bc0d6ee426e1e2cd2 (patch)
tree0d3d9018f6c1da4be5db585ac5c567072dbc1d4e /wqflask
parent49bbd065ccaf1fa968c2a5709652465608d184ef (diff)
downloadgenenetwork2-4365a40dee233244e12a493bc0d6ee426e1e2cd2.tar.gz
Increase width of email/password inputs on login page + change some text
Diffstat (limited to 'wqflask')
-rw-r--r--wqflask/wqflask/templates/new_security/login_user.html7
1 files changed, 4 insertions, 3 deletions
diff --git a/wqflask/wqflask/templates/new_security/login_user.html b/wqflask/wqflask/templates/new_security/login_user.html
index 88eab6bc..b8cdf6ef 100644
--- a/wqflask/wqflask/templates/new_security/login_user.html
+++ b/wqflask/wqflask/templates/new_security/login_user.html
@@ -6,7 +6,7 @@
{{ flash_me() }}
- <h4>Already have an account? Sign in here.</h4>
+ <h3>Sign in here.</h3>
{% if redis_is_available: %}
<form class="form-horizontal" action="/n/login" method="POST" name="login_user_form" id="loginUserForm">
@@ -15,14 +15,15 @@
<div class="form-group">
<label style="text-align:left;" class="col-xs-1 control-label" for="email_address">Email&nbsp;Address</label>
<div style="margin-left:20px;" class="col-xs-4">
- <input id="email_address" class="focused" name="email_address" type="text" value="">
+ <input id="email_address" class="focused" name="email_address" type="text" value="" size="50">
</div>
</div>
<div class="form-group">
<label style="text-align:left;" class="col-xs-1 control-label" for="password">Password</label>
<div style="margin-left:20px;" class="col-xs-4 controls">
- <input id="password" name="password" type="password" value="">
+ <input id="password" class="focused" name="password" type="password" value="" size="50">
+ <br />
<br />
<a href="/n/forgot_password">Forgot your password?</a><br/>
</div>