-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFirstDraft.html
More file actions
67 lines (56 loc) · 2.04 KB
/
Copy pathFirstDraft.html
File metadata and controls
67 lines (56 loc) · 2.04 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="format.css">
<div class="header">
</div>
<br><br><br><br><br>
</head>
<body>
<br>
<div class="infogray">
<h1 class="centertext"> Genomic Database Submisson </h1>
<p class="centertext"> *info about data submission* </p>
<br>
<br>
<h4> Name </h4>
<label for="fname">First:</label>
<input type="text" id="fname" name="fname"><br><br>
<label for="lname">Last:</label>
<input type="text" id="lname" name="lname"><br><br>
<br>
<h4> Data </h4>
<label for="data">Data:</label>
<input type="text" id="data" name="data"><br><br>
<br>
<button type="button">Submit</button>
<!-- PHP here to validate form on button click -->
</div>
<br>
</body>
<footer>
<br>
<div class="footer">
<br>
<table class="centertable">
<tr>
<td class="spacing"> <a href="GenomeProj_Frontend.html"> <img src="imgs/database_img.jpeg" width=75
height=75> </a></td>
<td class="spacing"> <a href="AboutTheTeam.html"> <img src="imgs/team_photo.jpeg" width=75 height=75>
</a> </td>
<td class="spacing"> <a href="https://www.towson.edu/"> <img src="imgs/towson_logo.png" width=75
height=75> </a> </td>
<td class="spacing"> <a href="https://www.mitre.org/"> <img src="imgs/mitre_logo.jpeg" width=75
height=75> </a> </td>
</tr>
<tr>
<td class="spacing"> <a href="GenomeProj_Frontend.html">Submit Data</a> </td>
<td class="spacing"> <a href=" AboutTheTeam.html">About the Team</a> </td>
<td class="spacing"> <a href="https://www.towson.edu/">Towson University</a> </td>
<td class="spacing"> <a href="https://www.mitre.org/">MITRE</a> </td>
</tr>
</table>
</div>
<br>
</footer>
</html>