Added page regattas
This commit is contained in:
4
server/templates/input.html
Normal file
4
server/templates/input.html
Normal file
@@ -0,0 +1,4 @@
|
||||
<div class="input-style input-style-1 input-required">
|
||||
<span class="color-highlight">$$placeholder;</span>
|
||||
<input id="$$html-id;" class="form-control $$css-class;" type="$$type;" placeholder="$$placeholder;" value="$$value;" />
|
||||
</div>
|
||||
6
server/templates/select.html
Normal file
6
server/templates/select.html
Normal file
@@ -0,0 +1,6 @@
|
||||
<div class="input-style input-style-1 input-required">
|
||||
<span class="color-highlight input-style-1-active">$$placeholder;</span>
|
||||
<select id="$$html-id;" class="form-control $$css-class;">
|
||||
$$options;
|
||||
</select>
|
||||
</div>
|
||||
4
server/templates/textarea.html
Normal file
4
server/templates/textarea.html
Normal file
@@ -0,0 +1,4 @@
|
||||
<div class="input-style input-style-1 input-required">
|
||||
<span class="color-highlight">$$placeholder;</span>
|
||||
<textarea id="$$html-id;" class="form-control $$css-class;" placeholder="$$placeholder;">$$value;</textarea>
|
||||
</div>
|
||||
Reference in New Issue
Block a user