-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathprofile.html
More file actions
51 lines (51 loc) · 1.58 KB
/
profile.html
File metadata and controls
51 lines (51 loc) · 1.58 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
<html>
<head>
<title>Profile</title>
</title>
</head>
<body>
<div align="center">
<h1>Save and View an Employee Profile</h1>
Employee ID:
<br>
<input type="text" name="employeeid" id="empid">
<br> First name:
<br>
<input type="text" name="firstname" id="fname">
<br> Last name:
<br>
<input type="text" name="lastname" id="lname">
<br> Employee Age:
<br>
<input type="text" name="empage" id="empage">
<br>
<br>
<input type="submit" id="saveprofile" value="Save Profile">
<br>
<p id="profileSaved"></p>
<br>
<input type="submit" id="getprofile" value="View all the Employee Profiles">
<br>
<div id="showProfile">
<table id="employeeProfile">
<colgroup>
<col style="width:20%">
<col style="width:20%">
<col style="width:20%">
<col style="width:20%">
</colgroup>
<tbody>
<tr>
<th>Employee ID</th>
<th>First name</th>
<th>Last Name</th>
<th>Employee Age</th>
</tr>
</tbody>
</table>
</div>
</div>
<script src="scripts.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.0/jquery.min.js"></script>
</body>
</html>