-
Notifications
You must be signed in to change notification settings - Fork 0
/
to_test_jquery.html
79 lines (78 loc) · 2.94 KB
/
to_test_jquery.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
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="stylesheet.css"/>
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<br/>
<table>
<tbody>
<tr>
<th></th>
<td>
<ul id="id_method0">
<li>
<label for="id_method0_0">
<input checked="checked" id="id_method0_0" name="method0" type="radio" value="local" required>
"upload from computer"
</label>
</li>
<li>
<label for="id_method0_1">
<input id="id_method0_1" name="method0" type="radio" value="url" required>
"upload from url"
</label>
</ul>
</td>
</tr>
<tr>
<th>
<label for="id_fasta">FASTA file(s) to be indexed:</label>
</th>
<td>
<input id="id_fasta" name="fasta" type="file">
</td>
</tr>
<tr>
<th></th>
<td>
<input id="id_fasta_url" name="fasta_url" type="url" disabled>
</td>
</tr>
<tr>
<th></th>
<td>
<ul id="id_method1">
<li>
<label for="id_method1_0">
<input checked="checked" id="id_method1_0" name="method1" type="radio" value="local" required>
"upload from computer"
</label>
</li>
<li>
<label for="id_method1_1">
<input id="id_method1_1" name="method1" type="radio" value="url" required>
"upload from url"
</label>
</ul>
</td>
</tr>
<tr>
<th>
<label for="id_index">index file:</label>
</th>
<td>
<input id="id_index" name="index" type="file">
</td>
</tr>
<tr>
<th></th>
<td>
<input id="id_index_url" name="index_url" type="url" disabled>
</td>
</tr>
</tbody>
</table>
</body>
</html>