forked from epety/100-shell-script-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
080-apm-footer.html
42 lines (39 loc) · 1.37 KB
/
080-apm-footer.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
<!-- footer information for APM system. -->
<div style='margin-top: 10px;'>
<table border='1' cellpadding='2' cellspacing='0' width="80%">
<tr><th colspan='4' bgcolor='#cccccc'>Password Manager Actions</th></tr>
<tr><td>
<form method="get" action="--myname--">
<table border='0'>
<tr><td><input type='hidden' name="a" value="A">
add user:</td><td><input type='text' name='u' size='10'>
</td></tr><tr><td>
password: </td><td> <input type='text' name='p' size='10'>
<input type='submit' value='+'>
</td></tr>
</table></form>
</td><td>
<form method="get" action="--myname--">
<table border='0'>
<tr><td><input type='hidden' name="a" value="U">
update</td><td><select name='u'>--options--</select>
</td></tr><tr><td>
password: </td><td><input type='text' name='p' size='10'>
<input type='submit' value='@'>
</td></tr>
</table></form>
</td><td>
<form method="get" action="--myname--"><input type='hidden'
name="a" value="D">delete <select name='u'> --options-- </select>
<input type='submit' value='-'> </form>
</td><td>
<form method="get" action="--myname--"><input type='hidden'
name="a" value="L"><input type='submit' value='list all users'>
</form>
</td></tr>
</table>
</div>
<h5 style='background:#ccf'>From the book <a href="http://www.intuitive.com/wicked/">
Wicked Cool Shell Scripts</a></h5>
</body>
</html>