1
0
mirror of https://github.com/dani/vroom.git synced 2024-07-02 12:13:12 +02:00
vroom/templates/default/password.html.ep
Daniel Berteaud 102df46a80 Reduce page title size
h1 was a bit too big
2014-05-14 23:03:40 +02:00

29 lines
1.0 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 'footer'