| 2768 |
mandeep.dh |
1 |
<!DOCTYPE html PUBLIC
|
|
|
2 |
"-//W3C//DTD XHTML 1.1 Transitional//EN"
|
|
|
3 |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
|
4 |
|
|
|
5 |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
|
6 |
<head>
|
|
|
7 |
<link type="text/css" href="../../jquery/jqueryui/themes/ui-lightness/jquery.ui.all.css" rel="stylesheet" />
|
|
|
8 |
<script type="text/javascript" src="../../jquery/jquery-1.4.2.js"></script>
|
|
|
9 |
<script type="text/javascript" src="../../jquery/jqueryui/ui/jquery.ui.core.js"></script>
|
|
|
10 |
<script type="text/javascript" src="../../jquery/jqueryui/ui/jquery.ui.widget.js"></script>
|
|
|
11 |
<script type="text/javascript" src="../../jquery/jqueryui/ui/jquery.ui.position.js"></script>
|
|
|
12 |
<script type="text/javascript" src="../../jquery/jqueryui/ui/jquery.ui.autocomplete.js"></script>
|
|
|
13 |
<script type="text/javascript" src="/content/jquery/validation/jquery.validate.js"></script>
|
|
|
14 |
<script>
|
|
|
15 |
$(document).ready(function() {
|
|
|
16 |
$("#f").validate({
|
|
|
17 |
rules: {
|
|
|
18 |
displayName: "required",
|
|
|
19 |
primeURL: "required",
|
|
|
20 |
searchQuery: "required"
|
|
|
21 |
}
|
|
|
22 |
});
|
|
|
23 |
});
|
|
|
24 |
</script>
|
|
|
25 |
<style>
|
|
|
26 |
* { font-family: Verdana; font-size: 96%; }
|
|
|
27 |
label { width: 10em; float: left; }
|
|
|
28 |
label.error { float: none; color: red; padding-left: .5em; vertical-align: top; }
|
|
|
29 |
p { clear: both; }
|
|
|
30 |
.submit { margin-left: 12em; }
|
|
|
31 |
em { font-weight: bold; padding-right: 1em; vertical-align: top; }
|
|
|
32 |
.textarea {width: 400px; height: 200px}
|
|
|
33 |
</style>
|
|
|
34 |
<title>Create New</title>
|
|
|
35 |
</head>
|
|
|
36 |
<body>
|
|
|
37 |
<div>
|
| 2838 |
mandeep.dh |
38 |
<h1>New Special Page</h1>
|
|
|
39 |
<form id="f" name="f" action="/content/special-page" method="post">
|
|
|
40 |
<label for="specialPageId">Special Page ID: </label>
|
|
|
41 |
<span id="specialPageId" name="id"><strong><em>{New Special Page ID}</em></strong></span>
|
| 2768 |
mandeep.dh |
42 |
<br></br>
|
| 6514 |
kshitij.so |
43 |
<label for="isTag">Special Page Type: </label>
|
| 6520 |
amit.gupta |
44 |
<select name="pageType"><option selected="selected" value="0">Query Type</option><option value="1">Tag Type</option></select>
|
| 6514 |
kshitij.so |
45 |
<br></br>
|
| 2768 |
mandeep.dh |
46 |
<label for="displayName">Display Name: </label>
|
|
|
47 |
<input id="displayName" name="displayName" type="text"/>
|
|
|
48 |
<br></br>
|
|
|
49 |
<label for="description">Description: </label>
|
|
|
50 |
<textarea id="description" name="description" rows="5" cols="50"></textarea>
|
|
|
51 |
<br></br>
|
|
|
52 |
<label for="primeURL">Prime URL: </label>
|
|
|
53 |
<input id="primeURL" name="primeURL" type="url" size="52"/>
|
|
|
54 |
<br></br>
|
|
|
55 |
<label for="saholicURL">Saholic URL: </label>
|
| 3081 |
mandeep.dh |
56 |
<input id="saholicURL" name="saholicURL" size="52"/>
|
| 2768 |
mandeep.dh |
57 |
<br></br>
|
|
|
58 |
<label for="searchQuery">Search Query: </label>
|
|
|
59 |
<input id="searchQuery" name="searchQuery" size="52"/>
|
|
|
60 |
<br></br>
|
|
|
61 |
<label for="pageTitle">Page Title: </label>
|
|
|
62 |
<input id="pageTitle" name="pageTitle" size="52"/>
|
|
|
63 |
<br/>
|
|
|
64 |
<label for="metaDescription">MetaDescription: </label>
|
|
|
65 |
<textarea id="metaDescription" name="metaDescription" rows="3" cols="50"></textarea>
|
|
|
66 |
<br/>
|
|
|
67 |
<label for="metaKeywords">MetaKeywords: </label>
|
|
|
68 |
<input id="metaKeywords" name="metaKeywords" size="52"/>
|
|
|
69 |
<br/>
|
|
|
70 |
<p></p>
|
|
|
71 |
<input type="button" id="cancelbutton" name="cancel" value="Cancel"/>
|
|
|
72 |
<input type="submit" name="create" value="Create"/>
|
|
|
73 |
</form>
|
|
|
74 |
</div>
|
|
|
75 |
</body>
|
|
|
76 |
</html>
|