-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patheditProfile.html
63 lines (54 loc) · 2.64 KB
/
editProfile.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!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="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<link rel="stylesheet" href="./css/style.css">
<script src="https://code.jquery.com/jquery-3.7.1.min.js"
integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" crossorigin="anonymous"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<title>Signup</title>
</head>
<body>
<div class="container d-flex justify-content-center align-items-center min-vh-100">
<div class="col-md-6">
<div class="row align-items-center">
<form method="POST">
<div class="header-text mb-4">
<h2>Hello</h2>
<p>We are happy to have you!</p>
</div>
<div class="input-group mb-3">
<input type="text" class="form-control form-control-lg bg-light fs-6" id="fullName"
placeholder="Full Name">
</div>
<div class="input-group mb-3">
<input type="text" class="form-control form-control-lg bg-light fs-6" id="phone"
placeholder="Phone Number">
</div>
<div class="input-group mb-3">
<input type="text" class="form-control form-control-lg bg-light fs-6" id="age"
placeholder="Age">
</div>
<div class="input-group mb-3">
<input type="text" class="form-control form-control-lg bg-light fs-6" id="dob"
placeholder="Date of Birth (DD-MM-YYYY)">
</div>
<div class="input-group mb-3">
<input type="test" class="form-control form-control-lg bg-light fs-6" id="address"
placeholder="Address">
</div>
<div class="input-group mb-3">
<button class="btn btn-lg btn-primary w-100 fs-6" id="editProfile">Edit</button>
</div>
</form>
</div>
</div>
</div>
</div>
<script type="text/javascript" src="js/editProfile.js"></script>
</body>
</html>