blob: aae2f7063dd92f1fce39ebfd8e92553f873ebfad (
plain)
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
|
<div id='site-add-dialog' class='modal fade' role='dialog'>
<div class='modal-dialog' role='document'>
<div class='modal-content'>
<div class='modal-header'>
<button
type='button'
class='close'
data-dismiss='modal'
aria-label='Close'
>
<span aria-hidden='true'>
×
</span>
</button><!-- close -->
<h4 class='modal-title'>
<i class='fa fa-plus-circle'></i>
New Site
</h4><!-- modal-title -->
</div><!-- modal-header -->
<div class='modal-body'>
<div class='row'>
<div class='col-md-6'>
<div class='form-group'>
<label for='site-add-name'>
Name
</label>
<input
type='text'
id='site-add-name'
class='form-control'
title='Enter site name.'
placeholder='Some Site'
aria-describedby='site-add-name-help'
/>
<p id='site-add-name-help' class='help-block'>
Site name.
</p>
</div><!-- form-group -->
</div><!-- col-md-6 -->
<div class='col-md-6'>
<div class='form-group'>
<label for='site-add-slug'>
Slug
</label>
<input
type='text'
id='site-add-slug'
class='form-control'
title='Enter site slug (lowercase).'
placeholder='some-site'
aria-describedby='site-add-slug-help'
/>
<p id='site-add-slug-help' class='help-block'>
Name of server files directory.
</p>
</div><!-- form-group -->
</div><!-- col-md-6 -->
</div><!-- row -->
<div class='form-group'>
<label for='site-add-body'>
Description
</label>
<textarea
id='site-add-body'
class='form-control'
title='Enter site description.'
placeholder='A brief site description'
aria-describedby='site-add-body-help'
/></textarea>
<p id='site-add-body-help' class='help-block'>
Brief description of site.
</p>
</div><!-- form-group -->
<div class='row'>
<div class='col-md-6'>
<div class='form-group'>
<label for='site-add-theme_id'>
Theme
</label>
<select
id='site-add-theme_id'
class='form-control'
title='Choose site theme.'
aria-describedby='site-add-theme-help'
><%=
theme_options
%></select>
<p id='site-add-theme-help' class='help-block'>
Site theme.
</p>
</div><!-- form-group -->
</div><!-- col-md-6 -->
<div class='col-md-6'>
<div class='form-group'>
<label for='site-add-lang'>
Language
</label>
<input
type='text'
id='site-add-lang'
class='form-control'
title='Enter site IETF language tag (BCP 47).'
aria-describedby='site-add-lang-help'
/>
<p id='site-add-lang-help' class='help-block'>
<a
href='https://en.wikipedia.org/wiki/IETF_language_tag'
title='View IETF language tag information.'
rel='noopener nofollow'
target='_blank'
>IETF BCP 47 language tag</a> for site.
</p>
</div><!-- form-group -->
</div><!-- col-md-6 -->
</div><!-- row -->
<div class='form-group'>
<label for='site-add-domains'>
Domains
</label>
<textarea
id='site-add-domains'
class='form-control'
title='Newline-delimited list of site domains.'
placeholder='some.example.com'
aria-describedby='site-add-domains-help'
/></textarea>
<p id='site-add-domains-help' class='help-block'>
Newline-deilmited list of site domains.
</p>
</div><!-- form-group -->
</div><!-- modal-body -->
<div class='modal-footer'>
<button
id='site-add-confirm'
class='btn btn-primary'
title='Create site.'
>
<span class='hidden loading'>
<i class='fa fa-spinner fa-spin'></i>
Please Wait...
</span>
<span class='loading'>
<i class='fa fa-plus-circle'></i>
Create Site
</span>
</button>
<button
class='btn btn-default'
data-dismiss='modal'
title='Close dialog.'
>
× Close
</button>
</div><!-- modal-footer -->
</div><!-- modal-content -->
</div><!-- modal-dialog -->
</div><!-- modal -->
|