29 lines
1.1 KiB
HTML
29 lines
1.1 KiB
HTML
<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> |