-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
68 lines (66 loc) · 2.07 KB
/
main.html
File metadata and controls
68 lines (66 loc) · 2.07 KB
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
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="main.js"></script>
</head>
<body>
<section class="form" style="color: rgb(132, 3, 3)" id="registration-form">
<div class="container">
<h1>Sign up!</h1>
<p>write information abt you</p>
</div>
<div class="container reg">
<form
name="myForm"
id="signup-form"
onsubmit="return validateForm()"
method="post"
novalidate
>
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label">username</label>
<input
type="text"
class="form-control"
id="exampleInputEmail1"
aria-describedby="emailHelp"
placeholder="Name"
name="fname"
required
/>
</div>
<div class="mb-3">
<label for="exampleInputPhone1" class="form-label"
>password</label
>
<input
type="text"
class="form-control"
id="exampleInputPhone1"
placeholder="********"
name="phoneNumber"
required
/>
</div>
<div class="mb-3">
<label for="exampleInputPhone1" class="form-label"
>confirm password</label
>
<input
type="text"
class="form-control"
id="exampleInputPhone1"
placeholder="********"
name="phoneNumber1"
required
/>
</div>
<button type="submit" class="btn sub btn-primary" id="registerButton">Register</button>
</form>
</div>
</section>
</body>
</html>