-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
124 lines (113 loc) · 7.97 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<html class="gr__localhost">
<head>
<title>Login</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/css.css">
<link type="text/css" rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Oswald">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open Sans">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<link href="css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<link href="css/bootstrap-theme.min.css" rel="stylesheet" type="text/css" />
<link href="css/style.css" rel="stylesheet" type="text/css" />
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<script src="jquery.min.js"></script>
</head>
<body class="w3-light-grey" data-gr-c-s-loaded="true">
<!-- Navigation bar con iconos de redes sociales -->
<div class="w3-bar w3-black w3-hide-small">
<a href="https://github.com/josephh24" class="w3-bar-item w3-button"><i class="fa fa-facebook-official"></i></a>
<a href="https://github.com/josephh24" class="w3-bar-item w3-button"><i class="fa fa-twitter"></i></a>
<a href="https://github.com/josephh24" class="w3-bar-item w3-button"><i class="fa fa-youtube"></i></a>
<a href="https://github.com/josephh24" class="w3-bar-item w3-button"><i class="fa fa-google"></i></a>
<a href="https://github.com/josephh24" class="w3-bar-item w3-button"><i class="fa fa-linkedin"></i></a>
</div>
<!-- w3-content define un contenedor con un tamaño predeterminado y centrado,
que esta esta al rededor de toda la pagina, salvo por footer en el ejemplo -->
<div class="w3-content" style="max-width:1600px">
<!-- Header -->
<header class="w3-container w3-center w3-padding-48 w3-white">
<h1 class="w3-xxxlarge"><a href="https://github.com/josephh24"><img src="img/avatar.png" alt="Girl Hat" style="width:10%" class="w3-padding-16"></a></h1>
<h6>Bienvenido al <span class="w3-tag">Login</span></h6>
</header>
<!-- Grid -->
<div class="w3-row w3-padding w3-border">
<!-- Blog entries -->
<div class="w3-col l12 s12">
<!-- Blog entry -->
<div class="w3-container w3-white w3-margin w3-padding-large">
<h2 style="text-align: center" ;=""> Validacion con bootstrap</h2>
<br>
<div class="select-boxes">
<div class="container">
<div class="col-lg-9">
<br><br>
<form class="form-horizontal" action=" " method="post" id="reg_form">
<legend> Cuenta </legend>
<fieldset>
<!-- Text input-->
<div class="form-group">
<label class="col-md-4 control-label">E-Mail</label>
<div class="col-md-6 inputGroupContainer">
<div class="input-group"> <span class="input-group-addon"><i class="glyphicon glyphicon-envelope"></i></span>
<input name="email" placeholder="E-Mail" class="form-control" type="text">
</div>
</div>
</div>
<div class="form-group has-feedback">
<label for="password" class="col-md-4 control-label">
Password
</label>
<div class="col-md-6 inputGroupContainer">
<div class="input-group"> <span class="input-group-addon"><i class="glyphicon glyphicon-home"></i></span>
<input class="form-control" id="userPw" type="password" placeholder="password"
name="password" data-minLength="5"
data-error="some error"
required/>
<span class="glyphicon form-control-feedback"></span>
<span class="help-block with-errors"></span>
</div>
</div>
</div>
<div class="form-group has-feedback">
<label for="confirmPassword" class="col-md-4 control-label">
Confirma Password
</label>
<div class="col-md-6 inputGroupContainer">
<div class="input-group"> <span class="input-group-addon"><i class="glyphicon glyphicon-home"></i></span>
<input class="form-control {$borderColor}" id="userPw2" type="password" placeholder="Confirmar password"
name="confirmPassword" data-match="#confirmPassword" data-minLength="5"
data-match-error="some error 2"
required/>
<span class="glyphicon form-control-feedback"></span>
<span class="help-block with-errors"></span>
</div>
</div>
</div>
<!-- Button -->
<div class="form-group">
<label class="col-md-4 control-label"></label>
<div class="col-md-4">
<button type="submit" class="btn btn-info" >Login <span class="glyphicon glyphicon-send"></span></button>
</div>
</div>
</fieldset>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- PrefixFree -->
<script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<script src='http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js'></script>
<script src='http://cdnjs.cloudflare.com/ajax/libs/bootstrap-validator/0.4.5/js/bootstrapvalidator.min.js'></script>
<!-- ValidacionBootstrap -->
<script src="js/validarBootstrap.js" type="text/javascript"></script>
</body>
</html>