virt2/api/mod/new-dep.html

33 lines
1.5 KiB
HTML
Raw Permalink Normal View History

{include file=$header title="Создать новый депозит" h1="Создать новый депозит"}
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="/">Главная страница</a></li>
<li class="breadcrumb-item"><a href="/cabinet/">Кабинет</a></li>
<li class="breadcrumb-item active" aria-current="page">Создать депозит</li>
</ol>
</nav>
<form action="/act/new-dep" method="post" id="new-dep" class="col-xs col-sm col-md col-lg-6 col-xl-6" style="margin: 0 auto;">
<div class="form-group">
<label for="exampleInputEmail1">Сумма депозита:</label>
<input type="text" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="1000 р." name="summa">
<small id="emailHelp" class="form-text text-muted"></small>
</div>
<div class="form-group">
<label for="exampleInputEmail1">Срок:</label>
<select class="form-control" id="exampleFormControlSelect1" name="srok">
<option value="1">24 часа (10%)</option>
<option value="2">72 часа (15%)</option>
</select>
<small id="emailHelp" class="form-text text-muted">Чем больше срок тем больше процент</small>
</div>
<input type="hidden" value="new-dep" name="act">
<input type="submit" class="btn btn-block btn-lg btn-primary" value="Создать" name="ok">
<br>
<div id="div_res"></div>
</form>
{include file=$footer}