add login button
This commit is contained in:
parent
255b62a3b3
commit
1efa4b04d0
@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
<form method="post">
|
<form method="post">
|
||||||
<input type="password" name="passphrase" placeholder="Passphrase" />
|
<input type="password" name="passphrase" placeholder="Passphrase" />
|
||||||
|
<button type="submit">Login</button>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
@section scripts {
|
@section scripts {
|
||||||
|
@ -57,7 +57,9 @@ textarea {
|
|||||||
border-width: 0;
|
border-width: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
body.dark, body.dark input, body.dark textarea {
|
body.dark,
|
||||||
|
body.dark input,
|
||||||
|
body.dark textarea {
|
||||||
background-color: #222;
|
background-color: #222;
|
||||||
color: #ddd;
|
color: #ddd;
|
||||||
}
|
}
|
||||||
@ -86,12 +88,24 @@ body.dark, body.dark input, body.dark textarea {
|
|||||||
background-color: orangered;
|
background-color: orangered;
|
||||||
}
|
}
|
||||||
|
|
||||||
form input[type=password] {
|
form input[type=password],
|
||||||
|
button {
|
||||||
display: block;
|
display: block;
|
||||||
|
width: 100%;
|
||||||
|
max-width: 300px;
|
||||||
margin: 20px auto;
|
margin: 20px auto;
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
padding: 8px;
|
padding: 8px;
|
||||||
border: 1px solid #999;
|
border: 1px solid #fff;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
form input[type=password] {
|
||||||
color: #999;
|
color: #999;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
form button {
|
||||||
|
cursor: pointer;
|
||||||
|
color: #fff;
|
||||||
|
background-color: #009E60;
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user