-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
29 lines (24 loc) · 1014 Bytes
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Parameter Input</title>
</head>
<body>
<h2>Enter Parameters:</h2>
<form method="POST" action="/">
<label for="gene-name">Gene Name:</label>
<input type="text" id="gene-name" name="gene-name" required><br><br>
<label for="residue1">Residue 1:</label>
<input type="text" id="residue1" name="residue1" required><br><br>
<label for="position">Position:</label>
<input type="text" id="position" name="position" required><br><br>
<label for="residue2">Residue 2:</label>
<input type="text" id="residue2" name="residue2" required><br><br>
<label for="top-isoforms">Top Isoforms:</label>
<input type="text" id="top-isoforms" name="top-isoforms" required><br><br>
<input type="submit" value="Submit">
</form>
</body>
</html>