45 lines
1.5 KiB
Cheetah
45 lines
1.5 KiB
Cheetah
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
{{ template "head" . }}
|
||
|
|
|
||
|
|
<body>
|
||
|
|
|
||
|
|
|
||
|
|
<section class="hero is-fullheight is-flex is-justify-content-center is-align-items-center">
|
||
|
|
<div class="card" style="width: 400px;">
|
||
|
|
<div class="card-content">
|
||
|
|
<div class="content">
|
||
|
|
<div class="container has-text-centered">
|
||
|
|
<h1 >Login Panel</p>
|
||
|
|
</div>
|
||
|
|
<form >
|
||
|
|
<div class="mb-3">
|
||
|
|
<label for="formGroupExampleInput" class="form-label">Email</label>
|
||
|
|
<input type="text" class="input" id="email" placeholder="Votre email" name="email">
|
||
|
|
</div>
|
||
|
|
<div class="mb-3">
|
||
|
|
<label for="formGroupExampleInput2" class="form-label">Password</label>
|
||
|
|
<input type="password" class="input" id="password" placeholder="Password" name="password">
|
||
|
|
</div>
|
||
|
|
<br />
|
||
|
|
<div class="container has-text-centered">
|
||
|
|
<button class="button is-primary is-outlined" type="submit" hx-post="/api/login"
|
||
|
|
hx-ext="json-enc">
|
||
|
|
Login
|
||
|
|
</button>
|
||
|
|
</div>
|
||
|
|
</form>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
</div>
|
||
|
|
</section>
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
</body>
|
||
|
|
<script src="/templates/assets/js/function/login.js"></script>
|
||
|
|
|
||
|
|
</html>
|