mirror of
https://github.com/janishutz/libreevent.git
synced 2025-11-25 13:24:24 +00:00
progress on setup
This commit is contained in:
17
src/server/admin/ui/css/setupstyle.css
Normal file
17
src/server/admin/ui/css/setupstyle.css
Normal file
@@ -0,0 +1,17 @@
|
||||
.setup-app {
|
||||
border-radius: 50px;
|
||||
margin-top: 2%;
|
||||
background-color: var(--secondary-background);
|
||||
color: var(--primary-color);
|
||||
height: 85vh;
|
||||
width: 90%;
|
||||
}
|
||||
|
||||
.setup-page {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
@@ -4,8 +4,9 @@
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Login :: myevent - admin panel</title>
|
||||
<title>Setup :: myevent - admin panel</title>
|
||||
<link rel="stylesheet" href="/admin/css/loginstyle.css">
|
||||
<link rel="stylesheet" href="/admin/css/setupstyle.css">
|
||||
</head>
|
||||
<body>
|
||||
<div class="content">
|
||||
@@ -20,17 +21,17 @@
|
||||
<option value="dark">Dark</option>
|
||||
</select>
|
||||
</div>
|
||||
<a href="https://myevent.janishutz.com"><img src="/assets/logo.png" alt="myevent-logo" style="height: 35vh;"></a>
|
||||
<div class="login-app">
|
||||
<h1>Setup</h1>
|
||||
<footer>myevent - admin panel</footer>
|
||||
<form action="/admin/auth" method="post" class="form">
|
||||
<label for="mail">Email address</label><br>
|
||||
<input type="email" id="mail" name="mail" required class="input"><br>
|
||||
<label for="pwd">Password</label><br>
|
||||
<input type="password" id="pwd" name="pwd" required class="input"><br>
|
||||
<input type="submit" value="Log in" class="button">
|
||||
</form>
|
||||
<div class="setup-app">
|
||||
<div class="setup-page">
|
||||
<h1>Setup</h1>
|
||||
<form action="/admin/auth" method="post" class="form">
|
||||
<label for="mail">Email address</label><br>
|
||||
<input type="email" id="mail" name="mail" required class="input"><br>
|
||||
<label for="pwd">Password</label><br>
|
||||
<input type="password" id="pwd" name="pwd" required class="input"><br>
|
||||
<input type="submit" value="Log in" class="button">
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
|
||||
|
||||
Reference in New Issue
Block a user