Make login and register buttons green.
Now that I'm using disabled buttons in some places I want gray to avoid using gray for anything else.
This commit is contained in:
parent
349fb33199
commit
62f36151c4
1 changed files with 2 additions and 2 deletions
|
@ -75,14 +75,14 @@ button
|
||||||
<span>Log in</span>
|
<span>Log in</span>
|
||||||
<input type="text" id="login_input_username" name="username" placeholder="username" autofocus>
|
<input type="text" id="login_input_username" name="username" placeholder="username" autofocus>
|
||||||
<input type="password" id="login_input_password" name="password" placeholder="password">
|
<input type="password" id="login_input_password" name="password" placeholder="password">
|
||||||
<button type="submit" id="login_submit_button" onclick="login_form()">Log in</button>
|
<button type="submit" id="login_submit_button" class="green_button" onclick="login_form()">Log in</button>
|
||||||
</div>
|
</div>
|
||||||
<div id="register_form" action="/register" method="post">
|
<div id="register_form" action="/register" method="post">
|
||||||
<span>Register</span>
|
<span>Register</span>
|
||||||
<input type="text" id="register_input_username" name="username" placeholder="username (at least {{min_username_length}})">
|
<input type="text" id="register_input_username" name="username" placeholder="username (at least {{min_username_length}})">
|
||||||
<input type="password" id="register_input_password_1" name="password_1" placeholder="password (at least {{min_password_length}})">
|
<input type="password" id="register_input_password_1" name="password_1" placeholder="password (at least {{min_password_length}})">
|
||||||
<input type="password" id="register_input_password_2" name="password_2" placeholder="password again">
|
<input type="password" id="register_input_password_2" name="password_2" placeholder="password again">
|
||||||
<button type="submit" id="register_input_button" onclick="register_form()">Register</button>
|
<button type="submit" id="register_input_button" class="green_button" onclick="register_form()">Register</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="message_area">
|
<div id="message_area">
|
||||||
|
|
Loading…
Reference in a new issue