My favorites
▼
|
Sign in
nyromodal
nyroModal - jQuery Modal Plugin
Project Home
Downloads
Issues
READ-ONLY: This project has been
archived
. For more information see
this post
.
Search
Search within:
All issues
Open issues
New issues
Issues to verify
for
Advanced search
Search tips
Subscriptions
Issue
101
attachment: edit.php
(1.9 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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" type="text/css" href="css/modals.css"/>
<link rel="stylesheet" type="text/css" href="css/nyroModal.Full.css"/>
<script type="text/javascript" src="js/jquery-1.2.6.min.js"></script>
<script type="text/javascript" src="js/jquery.nyroModal-1.2.7.js"></script>
</head>
<body>
<div class="modal_edit">
<div class="specheader">
<div class="header_title">
<span>Edition de Lien</span><br/>
Blablabla
</div>
</div>
<div class="maindetails">
<form class="nyroModal" method="post" action="edit.php">
<input type="hidden" id="id" name="id" value="1"/>
<input type="hidden" id="action" name="action" value="edit"/>
<table class="form_edit">
<tr>
<th>Nom</th>
<td><input class="input_edit" type="text" id="name" name="name" value="Nom"/></td>
</tr>
<tr>
<th>URL</th>
<td><input class="input_edit" type="text" id="url" name="url" value="http://url.com/"/></td>
</tr>
<tr>
<th>Description</th>
<td><textarea class="input_edit" id="description" name="description">Super Description</textarea></td>
</tr>
<tr>
<th>Categorie</th>
<td>
<select class="input_edit" id="category" name="category">
<option selected value="1">Categorie1</option>
<option value="2">Categorie2</option>
<option value="3">Categorie3</option>
<option value="4">Categorie4</option>
</select>
</td>
</tr>
<tr>
<th>Créé le</th>
<td>22.10.2008</td>
</tr>
</table>
<div class="spacer50"> </div>
<input type="submit" value="Save"/> <button class="nyroModalClose">Cancel</button>
</form>
</div>
</div>
</body>
</html>
Powered by
Google Project Hosting