|
| 1 | +{% extends "base.html" %} |
| 2 | + |
| 3 | +{% block bodyContent %} |
| 4 | + <div class="row-fluid" ng-app="setup" ng-controller="Setup" class="ng-cloak"> |
| 5 | + {% for messages in flash %} |
| 6 | + {% for message in messages %} |
| 7 | + <div class="alert alert-info">{{ message|raw }}</div> |
| 8 | + {% endfor %} |
| 9 | + {% endfor %} |
| 10 | + |
| 11 | + <h3>Setup Strider</h3> |
| 12 | + |
| 13 | + <div class="row-fluid"> |
| 14 | + <div class="span6"> |
| 15 | + <form class="strider-basics"> |
| 16 | + <fieldset> |
| 17 | + <legend>Basics</legend> |
| 18 | + |
| 19 | + <label for="basic-servername">Server Name</label> |
| 20 | + <input id="basic-servername" type="text" placeholder="Publically visible url" required=true> |
| 21 | + <span class="help-block">Publicaly accessible URL for this instance of Strider, e.g. ci.mydomain.com</span> |
| 22 | + </fieldset> |
| 23 | + </form> |
| 24 | + </div> |
| 25 | + |
| 26 | + <div class="span6"> |
| 27 | + <form class="strider-db"> |
| 28 | + <fieldset> |
| 29 | + <legend>Database</legend> |
| 30 | + |
| 31 | + <label>Host</label> |
| 32 | + <input type="text" placeholder="Type something…"> |
| 33 | + <span class="help-block">Example block-level help text here.</span> |
| 34 | + |
| 35 | + <label>Port</label> |
| 36 | + <input type="text" placeholder="Type something…"> |
| 37 | + <span class="help-block">Example block-level help text here.</span> |
| 38 | + |
| 39 | + <label>User</label> |
| 40 | + <input type="text" placeholder="Type something…"> |
| 41 | + <span class="help-block">Example block-level help text here.</span> |
| 42 | + |
| 43 | + <label>Password</label> |
| 44 | + <input type="text" placeholder="Type something…"> |
| 45 | + <span class="help-block">Example block-level help text here.</span> |
| 46 | + </fieldset> |
| 47 | + </form> |
| 48 | + </div> |
| 49 | + </div> |
| 50 | + |
| 51 | + <div class="row-fluid"> |
| 52 | + <div class="span6"> |
| 53 | + <form class="strider-db"> |
| 54 | + <fieldset> |
| 55 | + <legend>Email</legend> |
| 56 | + |
| 57 | + <label>Host</label> |
| 58 | + <input type="text" placeholder="Type something…"> |
| 59 | + <span class="help-block">Example block-level help text here.</span> |
| 60 | + |
| 61 | + <label>Port</label> |
| 62 | + <input type="text" placeholder="Type something…"> |
| 63 | + <span class="help-block">Example block-level help text here.</span> |
| 64 | + |
| 65 | + <label>User</label> |
| 66 | + <input type="text" placeholder="Type something…"> |
| 67 | + <span class="help-block">Example block-level help text here.</span> |
| 68 | + |
| 69 | + <label>Password</label> |
| 70 | + <input type="text" placeholder="Type something…"> |
| 71 | + <span class="help-block">Example block-level help text here.</span> |
| 72 | + |
| 73 | + <label>From Email Address</label> |
| 74 | + <input type="text" placeholder="Type something…"> |
| 75 | + <span class="help-block">Example block-level help text here.</span> |
| 76 | + </fieldset> |
| 77 | + </form> |
| 78 | + </div> |
| 79 | + |
| 80 | + <div class="span6"> |
| 81 | + <form class="strider-admin"> |
| 82 | + <fieldset> |
| 83 | + <legend>Admin User</legend> |
| 84 | + |
| 85 | + <label>Email</label> |
| 86 | + <input type="text" placeholder="Type something…"> |
| 87 | + <span class="help-block">Example block-level help text here.</span> |
| 88 | + |
| 89 | + <label>Password</label> |
| 90 | + <input type="text" placeholder="Type something…"> |
| 91 | + <span class="help-block">Example block-level help text here.</span> |
| 92 | + |
| 93 | + <label>Password Confirm</label> |
| 94 | + <input type="text" placeholder="Type something…"> |
| 95 | + <span class="help-block">Example block-level help text here.</span> |
| 96 | + </fieldset> |
| 97 | + </form> |
| 98 | + </div> |
| 99 | + </div> |
| 100 | + |
| 101 | + <div class="row-fluid"> |
| 102 | + <div class="span12"> |
| 103 | + <div class="form-actions"> |
| 104 | + <button type="submit" class="btn btn-primary">Save changes</button> |
| 105 | + </div> |
| 106 | + </div> |
| 107 | + </div> |
| 108 | + </div> |
| 109 | +{% endblock %} |
0 commit comments