-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.html
34 lines (34 loc) · 1.2 KB
/
project.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
<!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>Mini Project</title>
<link rel="stylesheet" href="project.css" />
</head>
<!--This is a javascript project that contains a simple info filling, submission and retreival page,
where a button is clicked to fill in an info and another button is clicked to retrieve the info,
the info includes username, password, email adddress and phone number,
each with certain requirements for validation.-->
<body>
<main class="mainContainer">
<div class="container1">
<h1>Hi there!</h1>
<br />
<p>Please click the button below to fill in your details</p>
<br /><br />
<button id="btn1" onclick="getUserDetail()">Fill in</button>
</div>
<br />
<div class="container2">
<button id="btn2" onclick="displayUserDetails()">See Details</button>
</div>
</main>
<footer>
<p>IamOiza</p>
<p>Copyright© 2022 all rights reserved</p>
</footer>
<script src="project.js"></script>
</body>
</html>