3words/views/settings.html

46 lines
1.6 KiB
HTML
Raw Normal View History

2014-08-18 14:30:29 +02:00
{include="layout"}
{include="navbar"}
<div class="container">
{if="$message"}
<div class="alert alert-info">{$message}</div>
{/if}
2014-08-18 14:30:29 +02:00
<div class="row">
<div class="col-md-3">
2014-08-18 15:41:05 +02:00
<ul class="nav nav-pills nav-stacked">
2014-08-18 15:24:54 +02:00
<li><a href="ucp.php?page=inbox">Inbox</a></li>
<li class="active"><a href="#">Settings</a></li>
2014-08-18 14:30:29 +02:00
</ul>
2014-08-18 01:19:03 +02:00
</div>
2014-08-18 14:30:29 +02:00
<div class="col-md-9">
<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" value="{$site_name}">
2014-08-18 14:30:29 +02:00
</div>
<div class="checkbox">
<label>
2014-08-18 17:28:14 +02:00
<input id="recent_check" type="checkbox" onchange="a(!this.checked)"> Showing Recent Answers
2014-08-18 14:30:29 +02:00
</label>
</div>
<div class="form-group">
<label for="recent">Recent Answers</label>
2014-08-18 17:28:14 +02:00
<input type="number" class="form-control" id="recent-count" name="recent_count" value="5">
2014-08-18 14:30:29 +02:00
</div>
2014-08-18 17:28:14 +02:00
<button type="submit" class="btn btn-default" id="recent-btn">Submit</button>
2014-08-18 14:30:29 +02:00
</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>
2014-08-18 01:19:03 +02:00
</div>
2014-08-18 14:30:29 +02:00
</div>
</div>
{include="footer"}