You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
1.2 KiB

<%= erb :header %>
<div class="container">
<h2 class="text-center">Подтвердите подпись пакетов проекта <%= @proj_name %></h2>
<form action="/prjsign/<%= ERB::Util.url_encode(@proj_id) %>" method="post">
<div class="form-check form-switch text-center pb-3">
<div class="pb-5">
Подписать пакеты проекта?
</div>
<% if @pass_exists.nil? || @pass_exists.strip == "" %>
<label class="form-check-label" for="password">
Введите пароль для ключа для подписывания:
</label>
<input type="password" class="form-control" id="password" name="password">
<% end %>
</div>
<div class="mb-3 text-center">
<button type="submit" class="btn btn-primary" name="cancel" value="cancel">Отменить</button>
<button type="submit" class="btn btn-danger" name="sign" value="sign">Подписать</button>
</div>
</form>
</div>
<%= erb :footer %>