Newer
Older
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
<!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">
<link rel="stylesheet" href="styles.css">
<title>Hyppy.net</title>
</head>
<body>
<div class="header">
<h1>HyppyNet</h1>
<p>Hyppypäiväkirja netissä</p>
</div>
<div id="loginBox">
<p class="loginBoxHeader">KIRJAUDU</p>
<p>Käytäjätunnus</p>
<input class="login" id="username" type="text">
<br>
<p>Salasana</p>
<input class="login" id="password1" type="password" >
<br>
<button class="login" id="loginsubmit">KIRJAUDU</button>
<a href="#" id="forgotPassword" onclick="innerHTML = 'Harmi :('">Unohtuiko salasana?</a>
<br>
<p id="signup">Uusi käyttäjä?</p> <a href="./signup.html" id="signupLink">REKISTERÖIDY</a>
</div>
<footer>
<div class="footerWrapper">
<a href="mailto:aa2875@student.jamk.fi">aa2875@student.jamk.fi</a>
</div>
</footer>
<script src="./loginscript.js"></script>
</body>
</html>