source: sicp/templates/registro.html @ 385e7d3

Last change on this file since 385e7d3 was 4d77bbe, checked in by Ing. Roldan D. Vargas G <rvargas@…>, 9 years ago

agregado template para el panel de acceso al sistema

  • Property mode set to 100644
File size: 2.1 KB
Line 
1{% load static from staticfiles %}
2{% load i18n %}
3<div class="row centered-form">
4    <div class="col-xs-12 col-sm-8 col-md-4 col-sm-offset-2 col-md-offset-4">
5        <div class="panel panel-default">
6            <div class="panel-heading">
7                <h3 class="panel-title text-center">{% trans 'Registro de Usuarios' %}</h3>
8            </div>
9            <div class="panel-body">
10                <form role="form">
11                    <div class="form-group">
12                        <input type="text" name="first_name" id="first_name" class="form-control input-sm" placeholder="First Name">
13                    </div>
14
15                    <div class="form-group">
16                        <input type="text" name="last_name" id="last_name" class="form-control input-sm" placeholder="Last Name">
17                    </div>
18
19                    <div class="form-group">
20                        <input type="email" name="email" id="email" class="form-control input-sm" placeholder="Email Address">
21                    </div>
22
23                    <div class="row">
24                        <div class="col-xs-6 col-sm-6 col-md-6">
25                            <div class="form-group">
26                                <input type="password" name="password" id="password" class="form-control input-sm" placeholder="Password">
27                            </div>
28                        </div>
29
30                        <div class="col-xs-6 col-sm-6 col-md-6">
31                            <div class="form-group">
32                                <input type="password" name="password_confirmation" id="password_confirmation" class="form-control input-sm" placeholder="Confirm Password">
33                            </div>
34                        </div>
35                    </div>
36
37                    <input type="submit" value="Register" class="btn btn-info btn-block">
38                </form>
39            </div>
40        </div>
41    </div>
42</div>
43
44<style>
45    #container1 { background-color: #e2dada; }
46    .centered-form { margin-top: 120px;margin-bottom: 120px; }
47    .centered-form .panel { background: rgba(255, 255, 255, 0.8); box-shadow: rgba(0, 0, 0, 0.3) 20px 20px 20px; }
48</style>
Note: See TracBrowser for help on using the repository browser.