-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
43 lines (43 loc) · 1.44 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
<!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">
<title>Simple Form for Contribution</title>
<link href="style.css" rel="stylesheet">
</head>
<body>
<div class="login-page">
<div class="form">
<form class="register-form">
<input type="text" placeholder="name"/>
<input type="password" placeholder="password"/>
<input type="text" placeholder="email address"/>
<button>create</button>
<p class="message">Already registered? <a href="#">Sign In</a></p>
</form>
<form class="login-form">
<h2 class="brand">
<strong>CONTRIBUTION</strong>
PORTAL
</h2>
<div class="logo">
<img style="height:%" src="https://www.kindpng.com/picc/m/464-4645124_kiet-group-of-institutions-logo-hd-png-download.png" alt="kietLogo" width="135" height="110">
</div>
<div></div>
<input type="text" placeholder="username"/>
<input type="password" placeholder="password"/>
<input type="reset" value="Reset"/>
<button>login</button>
<p class="message">Not registered? <a href="#">Create an account</a></p>
</form>
</div>
</div>
<script>
document.getElementById("reset").onclick = function() {
document.getElementById("number").value = "";
};
</script>
</body>
</html>