1
0
mirror of https://github.com/dani/vroom.git synced 2024-06-28 09:49:18 +02:00
vroom/templates/default/password.html.ep
Daniel Berteaud ecbee1f15c Split JS resources
Fix for #36
2014-05-18 16:30:13 +02:00

30 lines
1.1 KiB
Plaintext

% title $self->l('PASSWORD_REQUIRED');
%= include 'header'
%= include 'public_toolbar'
<div class="container-fluid">
<br/>
<div class="jumbotron">
<h2><%=l 'PASSWORD_REQUIRED' %></h2>
<p><%=l 'A_PASSWORD_IS_NEEDED_TO_JOIN' %></p>
<form id="joinPassForm" class="form-inline" method="post">
<fieldset>
<div class="row">
<div class="input-group col-md-6 col-lg-4">
<span class="input-group-addon">
<strong class="text-muted">
<%=l 'PASSWORD' %>
</strong>
</span>
<input id="password" name="password" type="password" placeholder="<%=l 'PASSWORD' %>" class="form-control help" data-toggle="tooltip" data-placement="bottom" title="<%=l 'PASSWORD' %>" autofocus>
<span class="input-group-btn">
<button type="submit" class="btn btn-default"><span class="glyphicon glyphicon-log-in"></span></button>
</span>
</div>
</div>
</fieldset>
</form>
</div>
</div>
%= include 'js_common'
%= include 'footer'