diff options
| author | Jules Laplace <jules@okfoc.us> | 2015-08-18 17:55:10 -0400 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2015-08-18 17:55:10 -0400 |
| commit | b4c7b2126b384a61bb69b046d0620ac53dd063ec (patch) | |
| tree | af4da24e82c8a3cb168824d16ae0005f96ef93f4 /views/controls/blueprint/settings.ejs | |
| parent | 46980b02b80ea94a9df57dc304d204e6feec0476 (diff) | |
split off info/settings
Diffstat (limited to 'views/controls/blueprint/settings.ejs')
| -rw-r--r-- | views/controls/blueprint/settings.ejs | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/views/controls/blueprint/settings.ejs b/views/controls/blueprint/settings.ejs new file mode 100644 index 0000000..a7ce2f0 --- /dev/null +++ b/views/controls/blueprint/settings.ejs @@ -0,0 +1,39 @@ +<div class="vvbox settings active" id="blueprintSettings"> + <input type="hidden" name="_csrf" value="[[- token ]]"> + <input type="hidden" name="_id" value="new"> + + <div class="setting"> + <a href="#" id="startpoint"> + <span class="ion-ios-navigate-outline"></span> + <span id="startText">Select Startpoint</span> + <span id="moveText">Move to Desired Point</span></a> + </div> + + <div class="setting"> + <input type="text" name="name" placeholder="layout name"> + </div> + + <div class="setting"> + <div class="radio-group"> + <input id="privacy_private" class="radio-group__option" type="radio" name="privacy" value="public" checked> + <label class="radio-group__label" for="privacy_private"> + Everyone + </label> + <input id="privacy_public" class="radio-group__option" type="radio" name="privacy" value="private"> + <label class="radio-group__label" for="privacy_public"> + Just for me + </label> + </div> + </div> + + <div class="setting"> + <button data-role="save-layout">Save</button> + </div> + + <div class="setting subButtons"> + <a href="#" data-role="clear-layout">Clear</a> + <a href="#" data-role="clone-layout">Clone</a> + <a href="#" data-role="destroy-layout">Delete</a> + </div> + +</div> |
