mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-24 03:54:20 +00:00
input
This commit is contained in:
parent
4336e5bc14
commit
279b325876
2 changed files with 19 additions and 9 deletions
|
@ -1,13 +1,23 @@
|
||||||
@ryg-dark-blue: #0d193b;
|
@background-color: #0d193b;
|
||||||
@ryg-light-blue: #a0ccff;
|
@text-color: #a0ccff;
|
||||||
|
@accent-color: white;
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font-family: sans-serif;
|
font-family: sans-serif;
|
||||||
color: @ryg-light-blue;
|
color: @text-color;
|
||||||
background-color: @ryg-dark-blue;
|
background-color: @background-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
h1, h2, h3, h4, h5, h6 {
|
h1, h2, h3, h4, h5, h6 {
|
||||||
color: white;
|
color: @accent-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
input {
|
||||||
|
background-color: rgba(red(@text-color), green(@text-color), blue(@text-color), 0.1);
|
||||||
|
color: @text-color;
|
||||||
|
border: none;
|
||||||
|
border-bottom: 1px dashed @text-color;
|
||||||
|
padding: 2px;
|
||||||
|
font-size: medium;
|
||||||
|
font-family: sans-serif;
|
||||||
|
}
|
||||||
|
|
|
@ -9,13 +9,13 @@
|
||||||
Login
|
Login
|
||||||
</h1>
|
</h1>
|
||||||
<form action="{{ url_for('page_loggedin') }}" method="POST">
|
<form action="{{ url_for('page_loggedin') }}" method="POST">
|
||||||
<label>
|
<label id="label-username">
|
||||||
Username
|
Username
|
||||||
<input name="username" type="text">
|
<input id="input-username" name="username" type="text">
|
||||||
</label>
|
</label>
|
||||||
<label>
|
<label id="label-password">
|
||||||
Password
|
Password
|
||||||
<input name="password" type="password">
|
<input id="input-password" name="password" type="password">
|
||||||
</label>
|
</label>
|
||||||
<input type="submit" value="Login">
|
<input type="submit" value="Login">
|
||||||
</form>
|
</form>
|
||||||
|
|
Loading…
Reference in a new issue