equal
deleted
inserted
replaced
|
1 <html> |
|
2 <head> |
|
3 <title>Add a bookmark</title> |
|
4 </head> |
|
5 <body> |
|
6 <h1>Add a bookmark</h1> |
|
7 <form action="add_result.py" method="post" name="add"> |
|
8 <fieldset class="bookmark"> |
|
9 <label>Nom: <input type="text" name="name"></label><br/> |
|
10 <label>URL: <input type="text" name="url"></label><br/> |
|
11 <label for="desc">Description: </label><br/> |
|
12 <textarea name="desc" rows="5" cols="40"></textarea> |
|
13 <button type="submit" name="submit">Soumettre</button> |
|
14 </fieldset> |
|
15 <fieldset class="keywords"> |
|
16 <legend>Mots clés:</legend> |
|
17 <ul> |
|
18 <TMPL_LOOP Keywords> |
|
19 <li><input type="checkbox" name="kw" value="<TMPL_VAR id>"/><TMPL_VAR keyword></li> |
|
20 </TMPL_LOOP> |
|
21 </ul> |
|
22 </form> |
|
23 </body> |
|
24 </html> |