more testing

This commit is contained in:
flash 2015-03-29 21:13:25 +02:00
parent 7da601c755
commit 53730dd818
2 changed files with 9 additions and 1 deletions

View file

@ -68,7 +68,9 @@
<input type="hidden" name="redirect" value="{{ sakura.currentpage }}" />
<input type="hidden" name="session" value="{{ php.sessionid }}" />
<input type="hidden" name="time" value="{{ php.time }}" />
<label for="headerLoginUserName">Username:</label>
<input type="text" id="headerLoginUserName" name="username" class="inputStyling" placeholder="Username" />
<label for="headerLoginPassword">Username:</label>
<input type="password" id="headerLoginPassword" name="password" class="inputStyling" placeholder="Password" />
<input type="submit" id="headerLoginButton" name="submit" class="inputStyling small" value="Login" />
</form>

View file

@ -1059,7 +1059,8 @@ input[type="submit"].inputStyling, input[type="button"].inputStyling {
input[type="submit"].inputStyling.small, input[type="button"].inputStyling.small {
padding: 1px 6px;
margin: 0;
font-size: 12px;
font-size: 16px;
border-radius: 0;
}
input[type="submit"].inputStyling:hover, input[type="button"].inputStyling:hover {
box-shadow: inset #222 0 0 3px;
@ -1218,6 +1219,11 @@ textarea.inputStyling {
/* Header login thing */
#headerLoginForm {
background: #9475B2;
border-bottom: 2px solid #9475B2;
box-shadow: 0 0 5px #8364A1;
text-align: center;
}
#headerLoginForm label {
font-family: "Segoe UI", sans-serif;
font-weight: 100;
}