This repository has been archived by the owner on Dec 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathselector.html
90 lines (88 loc) · 2.55 KB
/
selector.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<html>
<head>
<title>CodeProject Template Selector</title>
<style type="text/css">
#TextArea1
{
height: 128px;
width: 315px;
}
#Text2
{
width: 315px;
}
#Text1
{
width: 315px;
}
#TextBody
{
height: 180px;
width: 376px;
}
#TextSubject
{
width: 375px;
}
#TextTitle
{
width: 375px;
}
#Select1
{
width: 350px;
height: 180px;
}
#selectTemplates
{
width: 465px;
height: 243px;
}
.style1
{
width: 465px;
}
.style7
{
width: 465px;
height: 252px;
}
.style9
{
font-size: x-small;
font-style: italic;
text-align: right;
}
</style>
<link type="text/css" href="css/custom-theme/jquery-ui-1.8.2.custom.css" rel="Stylesheet" />
<script type="text/javascript" src="js/json2-min.js"></script>
<script type="text/javascript" src="jquery/jquery-1.11.1.min.js"></script>
<script type="text/javascript" src="jquery/jquery-ui-1.8.2.custom.min.js"></script>
<script type="text/javascript" src="js/cptemplates.js"></script>
<script type="text/javascript" src="js/startSelector.js"></script>
<script type="text/javascript" src="js/analytics.js"></script>
</head>
<body style="background-color: #ffcc66; width: 470; height: 400">
<center>
<img alt="CodeProject Logo" src="images/codeproject468x60.gif" /><br />
<span style="font-size: medium;">CodeProject Template Selector</span>
</center>
<div id="templateLoading">Loading elements..........<img src="css/custom-theme/images/ui-anim_basic_16x16.gif" alt="Loading Data Animation"/></div>
<div id="templateListing">
<div id="templateFilter" style="float: right">Template Filter: <select id="selectFilter" name="selectFilter">
<option>Auto</option>
<option>All</option>
<option>Message</option>
<option>Answer</option>
<option>Snippet</option>
</select></div>
<table>
<tr><td class="style7"><select id="selectTemplates" multiple="multiple" name="selectTemplates"></select></td></tr>
<tr><td>
<input id="buttonSelect" name="buttonSelect" title="Select Template" type="button" value="Select" />
</td></tr>
</table>
</div>
<p class="style9">Version 2.0 - Dave Auld (c) 2014</p>
</body>
</html>