forked from codeb1ooded/RTI_Automation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbackup_ask_user.html
More file actions
69 lines (69 loc) · 2.39 KB
/
backup_ask_user.html
File metadata and controls
69 lines (69 loc) · 2.39 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
68
69
<html>
<head>
<title> Backup </title>
</head>
<body>
<p>Select All Tables for which you want backup</p>
<form method="post" action="backup.php">
<table>
<tr>
<th>Add rti</th>
<th><input type="radio" name="add_rti" value="yes" checked> Yes</th>
<th><input type="radio" name="add_rti" value="no"> No</th>
</tr>
<tr>
<th>Appeal Query</th>
<th><input type="radio" name="appeal_query" value="yes" checked> Yes</th>
<th><input type="radio" name="appeal_query" value="no"> No</th>
</tr>
<tr>
<th>Article Section</th>
<th><input type="radio" name="article_section" value="yes" checked> Yes</th>
<th><input type="radio" name="article_section" value="no"> No</th>
</tr>
<tr>
<th>Article Sub-section</th>
<th><input type="radio" name="article_sub_section" value="yes" checked> Yes</th>
<th><input type="radio" name="article_sub_section" value="no"> No</th>
</tr>
<tr>
<th>Department Reply</th>
<th><input type="radio" name="dept_reply" value="yes" checked> Yes</th>
<th><input type="radio" name="dept_reply" value="no"> No</th>
</tr>
<tr>
<th>First Appeal</th>
<th><input type="radio" name="first_appeal" value="yes" checked> Yes</th>
<th><input type="radio" name="first_appeal" value="no"> No</th>
</tr>
<tr>
<th>Info About Reply</th>
<th><input type="radio" name="info_about_reply" value="yes" checked> Yes</th>
<th><input type="radio" name="info_about_reply" value="no"> No</th>
</tr>
<tr>
<th>Public Authorities</th>
<th><input type="radio" name="public_authority" value="yes" checked> Yes</th>
<th><input type="radio" name="public_authority" value="no"> No</th>
</tr>
<tr>
<th>Reply Queries</th>
<th><input type="radio" name="reply_queries" value="yes" checked> Yes</th>
<th><input type="radio" name="reply_queries" value="no"> No</th>
</tr>
<tr>
<th>Section 4</th>
<th><input type="radio" name="section4" value="yes" checked> Yes</th>
<th><input type="radio" name="section4" value="no"> No</th>
</tr>
<tr>
<th>T2</th>
<th><input type="radio" name="t2" value="yes" checked> Yes</th>
<th><input type="radio" name="t2" value="no"> No</th>
</tr>
</table>
<input type="submit" name="submit" value="Submit" />
</form>
<br><br><br><br><a href="select_option.php" class=btn>Back</a>
</body>
</html>