added settings template

This commit is contained in:
pixeldesu 2014-08-18 01:19:03 +02:00
parent ef8d5b660b
commit 7dea61073c
1 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,29 @@
<form role="form">
<div class="form-group">
<label for="sitename">Site Name</label>
<input type="text" class="form-control" id="sitename" placeholder="3 words about your mom">
</div>
<div class="checkbox">
<label>
<input id="recent_check" type="checkbox"> Showing Recent Answers
</label>
</div>
<!-- TODO: Javascript disabling this form if above checkbox is unchecked -->
<div class="form-group">
<label for="recent">Recent Answers</label>
<input type="number" class="form-control" id="recent_count" value="5" disabled>
</div>
<button type="submit" class="btn btn-default">Submit</button>
</form>
<hr/>
<form role="form">
<div class="form-group">
<label for="password_change">New Password</label>
<input type="password" class="form-control" id="password_change" placeholder="Password">
</div>
<div class="form-group">
<label for="password_verify">Repeat New Password</label>
<input type="password" class="form-control" id="password_verify" placeholder="Password">
</div>
<button type="submit" class="btn btn-default">Change Password</button>
</form>