-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.html
20 lines (20 loc) · 1020 Bytes
/
login.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<link rel="stylesheet" type="text/css" href="css/StyleSheet.css" />
<title>Koodi Ämber</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<form id="login" action="login.php" method="post" accept-charset="UTF-8">
<fieldset>
<legend>Logi sisse</legend>
<p><label for="username">Kasutajanimi</label><input class="vorm" type="text" name="username" id="username" maxlength="20" required/></p>
<p><label for="password">Parool</label><input class="vorm" type="password" name="password" id="password" maxlength="50" required/></p>
<p><input type="submit" name="Submit" value="Logi sisse" />
</p>
</fieldset>
</form>
</body>
</html>