more testing
This commit is contained in:
parent
7da601c755
commit
53730dd818
2 changed files with 9 additions and 1 deletions
|
@ -68,7 +68,9 @@
|
||||||
<input type="hidden" name="redirect" value="{{ sakura.currentpage }}" />
|
<input type="hidden" name="redirect" value="{{ sakura.currentpage }}" />
|
||||||
<input type="hidden" name="session" value="{{ php.sessionid }}" />
|
<input type="hidden" name="session" value="{{ php.sessionid }}" />
|
||||||
<input type="hidden" name="time" value="{{ php.time }}" />
|
<input type="hidden" name="time" value="{{ php.time }}" />
|
||||||
|
<label for="headerLoginUserName">Username:</label>
|
||||||
<input type="text" id="headerLoginUserName" name="username" class="inputStyling" placeholder="Username" />
|
<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="password" id="headerLoginPassword" name="password" class="inputStyling" placeholder="Password" />
|
||||||
<input type="submit" id="headerLoginButton" name="submit" class="inputStyling small" value="Login" />
|
<input type="submit" id="headerLoginButton" name="submit" class="inputStyling small" value="Login" />
|
||||||
</form>
|
</form>
|
||||||
|
|
|
@ -1059,7 +1059,8 @@ input[type="submit"].inputStyling, input[type="button"].inputStyling {
|
||||||
input[type="submit"].inputStyling.small, input[type="button"].inputStyling.small {
|
input[type="submit"].inputStyling.small, input[type="button"].inputStyling.small {
|
||||||
padding: 1px 6px;
|
padding: 1px 6px;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
font-size: 12px;
|
font-size: 16px;
|
||||||
|
border-radius: 0;
|
||||||
}
|
}
|
||||||
input[type="submit"].inputStyling:hover, input[type="button"].inputStyling:hover {
|
input[type="submit"].inputStyling:hover, input[type="button"].inputStyling:hover {
|
||||||
box-shadow: inset #222 0 0 3px;
|
box-shadow: inset #222 0 0 3px;
|
||||||
|
@ -1218,6 +1219,11 @@ textarea.inputStyling {
|
||||||
/* Header login thing */
|
/* Header login thing */
|
||||||
#headerLoginForm {
|
#headerLoginForm {
|
||||||
background: #9475B2;
|
background: #9475B2;
|
||||||
|
border-bottom: 2px solid #9475B2;
|
||||||
box-shadow: 0 0 5px #8364A1;
|
box-shadow: 0 0 5px #8364A1;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
#headerLoginForm label {
|
||||||
|
font-family: "Segoe UI", sans-serif;
|
||||||
|
font-weight: 100;
|
||||||
|
}
|
||||||
|
|
Reference in a new issue