19 lines
1.0 KiB
HTML
19 lines
1.0 KiB
HTML
<section class="max-w-md mx-auto">
|
|
<h1 class="text-2xl font-bold mb-3">Sign in</h1>
|
|
<div class="rounded-2xl border border-slate-800 bg-slate-900/60 p-4">
|
|
<form method="post" class="grid gap-3">
|
|
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}">
|
|
<label class="grid gap-1 text-sm">
|
|
<span class="text-slate-300">Username</span>
|
|
<input name="username" autocomplete="username" required class="px-3 py-2 rounded-lg bg-slate-950 border border-slate-700">
|
|
</label>
|
|
<label class="grid gap-1 text-sm">
|
|
<span class="text-slate-300">Password</span>
|
|
<input name="password" type="password" autocomplete="current-password" required class="px-3 py-2 rounded-lg bg-slate-950 border border-slate-700">
|
|
</label>
|
|
<button class="mt-2 px-4 py-2 rounded-lg bg-brand-600 hover:bg-brand-700 font-semibold" type="submit">Login</button>
|
|
<p class="text-xs text-slate-400">First run? Use the bootstrap admin, then change it.</p>
|
|
</form>
|
|
</div>
|
|
</section>
|