blob: 98d69af66452c40018cb97b67bcd07b020cf186c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?php /* Copyright (c) 2024 Freya Murphy */ ?>
<form method="post">
<label for="username">Username</label>
<input
type="text"
id="username"
name="username"
autofocus="true"
>
<label fot="password">Password</label>
<input
type="password"
id="password"
name="password"
>
<input
type="submit"
role="button"
id="submit"
value="Sign In"
>
<form>
|