-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (38 loc) · 1016 Bytes
/
index.html
File metadata and controls
40 lines (38 loc) · 1016 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="design.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<div class="main">
<form onsubmit="return check()">
<h1 align="center">Register Here</h1>
<div>
<input type="text" placeholder="Username" class="uname">
</div>
<div>
<input type="email" placeholder="Email" class="email">
</div>
<div>
<input type="telephone" placeholder="Phone Number" class="pn">
</div>
<div>
<input type="password" placeholder="Password" class="pass1">
</div>
<div>
<input type="password" placeholder="Repeat Password" class="pass2">
</div>
<button type="submit">Register</button><br />
<!-- Error Message -->
<span class="err"></span>
</form>
</div>
<script src="main.js">
//javascript code
</script>
</body>
</html>