comparison tests/crud1.html @ 2164:728aaeea12fd

Add a simple 'make test' target
author Adam Chlipala <adam@chlipala.net>
date Wed, 29 Jul 2015 10:08:03 -0400
parents
children
comparison
equal deleted inserted replaced
2163:598a5f781d39 2164:728aaeea12fd
1 <?xml version="1.0" encoding="utf-8" ?>
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><head></head><body>
4 <p>Inserted with ID 1.</p>
5
6 <table border="1">
7 <tr>
8 <th>ID</th>
9 <th>A</th>
10 <th>B</th>
11 <th>C</th>
12 <th>D</th>
13 </tr>
14
15 <tr>
16 <td>1</td>
17 <td>1</td>
18 <td>2</td>
19 <td>3</td>
20 <td>True</td>
21 <td>
22 <a href="/Demo/Crud1/upd/1">[Update]</a>
23 <a href="/Demo/Crud1/confirm/1">[Delete]</a>
24 </td>
25 </tr>
26
27 </table>
28 <br /><hr /><br />
29
30 <form method="post" action="/Demo/Crud1/create">
31 <li> A: <input type="text" name="A" /></li>
32 <li> B: <input type="text" name="B" /></li>
33 <li> C: <input type="text" name="C" /></li>
34 <li> D: <input type="checkbox" name="D" /></li>
35 <input type="submit" />
36 </form>
37
38 </body></html>