-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.html
57 lines (50 loc) · 2.06 KB
/
login.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
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="javascript/login.js"></script>
<script src="javascript/backbtn.js"></script>
<link rel="stylesheet" href="stylesheet/style.css">
<script src="https://kit.fontawesome.com/51dbfd6491.js" crossorigin="anonymous"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<title>Login</title>
</head>
<body>
<header class="loginHeader">
<div class="backPage" onclick="goBack()"><i class="fa-solid fa-arrow-left"></i></div>
</header>
<div class="background">
<br>
<h1 class="rewardHeader">Log ind</h1>
</div>
<div class="whiteBackground">
<div class="loginImg">
<img class="loginLogo image" src="img/logo.png" alt="Logo">
<img class="loginMaskot image" src="img/maskot.png" alt="Maskot">
</div>
<form class="loginForm">
<label class="inputLabel">E-mail</label>
<input type="text" class="form-control" name="username" placeholder="Skriv din Email" required="">
<br>
<label class="inputLabel">Password</label>
<input type="password" class="form-control" name="password" placeholder="Skriv din adgangskode" required="">
<a class="forgotPassword" href="#">Glemt dit password?</a><br>
<p>Ingen konto endnu? <a class="loginCenterTxt" href="opret.html">Opret konto.</a></p>
<button class="greenLoginBtn greenBtn" type="submit" onclick="login()">
Log ind
<i class="fa-solid fa-arrow-right greenArrow"></i>
</button>
<span class="loginCenterTxt txtLine"> Eller anvend </span>
<div class="sociallogin">
<a href="#" class="otherLogin"><img src="img/google.png" alt="google logo"></a>
<a href="#" class="otherLogin2"><img src="img/facebook.png" alt="facebook logo"></a>
</div>
</form>
<!-- Footer -->
<footer></footer>
</div>
</body>
</html>