-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile.html
More file actions
91 lines (87 loc) · 3.39 KB
/
profile.html
File metadata and controls
91 lines (87 loc) · 3.39 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html>
<!-- <aside class="profile-card">
<a target="_blank" href="#">
<img src="assets/back.png" class="hoverZoomLink">
</a> -->
<head>
<title>
Profile
</title>
<link rel="stylesheet" href="css/gb.css">
</head>
<!-- <div class="wrapper"> -->
<body>
<!-- <div class="top"><h1> <i class="fa-regular fa-user user"></i>PROFILE</h1><a class="logout" href="login.html"><button>logout</button></a></div>
<div class="center"> -->
<aside class="profile-card">
<a target="_blank" href="#">
<div class="center">
<!-- <img src="assets/back.png" class="hoverZoomLink"> -->
<div class="logo">
<img src="assets/back.png" alt="">
</div>
</a>
<div class="top"><h1> <i class="fa-regular fa-user user"></i>PROFILE</h1></br><a class="logout" href="login.html"><button>logout</button></a></div>
<!-- <div class="center"> -->
<!-- <div class="wrapper"> -->
<table >
<table class="first">
<td >
<form onsubmit="event.preventDefault();onFormSubmit();sign(event);" autocomplete="off" method="post">
<div>
<label>Full Name</label><label class="validation-error hide" id="fullNameValidationError"></label>
<input type="text" name="fullName" id="fullName">
</div>
<div>
<label>Age</label>
<input type="number" name="age" id="age">
</div>
<div>
<label>Date Of Birth</label>
<input type="date" name="dob" id="dob">
</div>
<div>
<label>Contact Number</label>
<input type="number" name="contact" id="contact">
</div>
<div>
<label>occupation</label>
<input type="text" name="occupation" id="occupation">
</div>
<div class="form-action-buttons">
<!-- <a class="logout" href="login.html"><button>logout</button></a> -->
<input type="submit" value="Submit">
</div>
<!-- </aside> -->
</form>
</td><br>
</table><br><br>
<table class="second">
<td class="to">
<table class="list" id="profile">
<thead>
<tr>
<th>Full Name</th></br>
<th>Age</th><br>
<th>DOB</th><br>
<th>Contact</th><br>
<th>occupation</th><br>
<th></th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</td>
</tr>
</table>
</div>
<!-- <a class="logout" href="login.html"><button>logout</button></a> -->
<script src="js/profile.js"></script>
<script src="https://kit.fontawesome.com/102326e940.js" crossorigin="anonymous"></script>
<!-- </div> -->
</aside>
</body>
<!-- </div> -->
</html>