-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (42 loc) · 1.15 KB
/
index.html
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
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="da">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Loginside</title>
<link rel="stylesheet" href="styles/style.css" />
<script src="scrips/js.js" defer></script>
</head>
<body>
<div class="login">
<div class="loginLogo">
<img src="assets\images\rnlogo2.png" alt="" />
</div>
<div class="loginInput">
<form name="logind" id="loginForm">
<input
id="username"
type="text"
placeholder="Brugernavn"
name="username"
oninvalid="this.setCustomValidity('Indtast korrekt Brugernavn')"
required
/>
<br />
<input
is="password"
type="password"
placeholder="Kodeord"
name="password"
oninvalid="this.setCustomValidity('Forkert kode')"
required
/>
<br />
<button type="submit" onclick="loginCheck(this.form)" value="logind">
Login
</button>
</form>
</div>
</div>
</body>
</html>