-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGetEmpOutput.html
More file actions
39 lines (24 loc) · 778 Bytes
/
GetEmpOutput.html
File metadata and controls
39 lines (24 loc) · 778 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
<!DOCTYPE html>
<html>
<head>
<title>Employee Information</title>
</head>
<center>
<font color="black" size="5" style="font-family: avenir">
<h1 style="color: DodgerBlue">Employee Information</h1>
<body bgcolor="lightgrey">
<form>
<div>
Employee ID:<br> {{ id }} <br><br>
First Name:<br> {{ fname }} <br><br>
Last Name:<br> {{ lname }} <br><br>
Primary Interest:<br> {{ interest }} <br><br>
Location:<br> {{ location }} <br><br>
Image URL: <br> {{ image_url }} <br><br>
<button type="submit" style="background: grey; height: 45px; width: 200px; color:white; font:oblique;" formaction="http://3.134.115.108:80/getemp">RESET</button><br><br>
</div>
</form>
</body>
</font>
</center>
</html>