fix login page layout
This commit is contained in:
parent
ba3a68c3fa
commit
0517a59308
@ -1,6 +1,16 @@
|
|||||||
@import url("openwebrx-header.css");
|
@import url("openwebrx-header.css");
|
||||||
@import url("openwebrx-globals.css");
|
@import url("openwebrx-globals.css");
|
||||||
|
|
||||||
|
body {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
.login-container {
|
||||||
|
flex: 1;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
.login {
|
.login {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 50%;
|
left: 50%;
|
||||||
|
@ -11,17 +11,19 @@
|
|||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
${header}
|
${header}
|
||||||
<div class="login">
|
<div class="login-container">
|
||||||
<form method="POST">
|
<div class="login">
|
||||||
<div class="form-group">
|
<form method="POST">
|
||||||
<label for="user">Username</label>
|
<div class="form-group">
|
||||||
<input type="text" class="form-control" id="user" name="user" autofocus="autofocus" placeholder="Username">
|
<label for="user">Username</label>
|
||||||
</div>
|
<input type="text" class="form-control" id="user" name="user" autofocus="autofocus" placeholder="Username">
|
||||||
<div class="form-group">
|
</div>
|
||||||
<label for="password">Password</label>
|
<div class="form-group">
|
||||||
<input type="password" class="form-control" id="password" name="password" placeholder="Password">
|
<label for="password">Password</label>
|
||||||
</div>
|
<input type="password" class="form-control" id="password" name="password" placeholder="Password">
|
||||||
<button type="submit" class="btn btn-secondary btn-login">Login</button>
|
</div>
|
||||||
</form>
|
<button type="submit" class="btn btn-secondary btn-login">Login</button>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
Loading…
Reference in New Issue
Block a user