mirror of
https://github.com/tabler/tabler.git
synced 2026-07-27 21:44:39 +04:00
34 lines
1.0 KiB
HTML
34 lines
1.0 KiB
HTML
<form class="card" action="#" method="get">
|
|
<div class="card-body p-5">
|
|
<div class="card-title">Login to your account</div>
|
|
|
|
<div class="mb-3">
|
|
<label class="form-label">Email address</label>
|
|
<input type="email" class="form-control" placeholder="Enter email" autocomplete="off">
|
|
</div>
|
|
<div class="mb-2">
|
|
<label class="form-label">
|
|
Password
|
|
<span class="form-label-description">
|
|
<a href="{{ site.base }}/forgot-password.html">I forgot password</a>
|
|
</span>
|
|
</label>
|
|
<input type="password" class="form-control" placeholder="Password" autocomplete="off">
|
|
</div>
|
|
<div class="mb-2">
|
|
<label class="form-check">
|
|
<input type="checkbox" class="form-check-input"/>
|
|
<span class="form-check-label">Remember me on this device</span>
|
|
</label>
|
|
</div>
|
|
|
|
<div class="form-footer">
|
|
<button type="submit" class="btn btn-primary btn-block">Sign in</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
|
|
<div class="text-center text-muted">
|
|
Don't have account yet? <a href="{{ site.base }}/sign-up.html" tabindex="-1">Sign up</a>
|
|
</div>
|