blob: ca3806645e9e7c4c004524a2d5d1682f4c44bd7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
<?php /* Copyright (c) 2024 Freya Murphy */ ?>
<form method="post" autocomplete="off">
<div>
<input
type="text"
id="username"
name="username"
autofocus="true"
autocomplete="off"
placeholder=" ">
<label for="username">Username</label>
</div>
<div>
<input
type="password"
id="password"
name="password"
autocomplete="off"
placeholder=" ">
<label fot="password">Password</label>
</div>
<input
type="submit"
role="button"
id="submit"
value="Sign In"
class="btn"
>
<input
type="hidden"
name="redirect"
value="<?=maybe_base64_encode(esc($redirect))?>">
<form>
|