-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·40 lines (34 loc) · 1.28 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
<!DOCTYPE html>
<!-- Basado en http://www.webdesignshock.com/html5-css3-login-form/, adaptado por Cristian Menghi http://www.menghi.uy -->
<!--[if lt IE 7 ]> <html lang="en" class="ie6 ielt8"> <![endif]-->
<!--[if IE 7 ]> <html lang="en" class="ie7 ielt8"> <![endif]-->
<!--[if IE 8 ]> <html lang="en" class="ie8"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!-->
<html lang="es"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Login Captive Portal</title>
<link rel="stylesheet" type="text/css" href="captiveportal-style.css" />
</head>
<body>
<div class="container">
<section id="content">
<form method="post" action="$PORTAL_ACTION$">
<h1>Ingreso RED</h1>
<div>
<input type="text" placeholder="Usuario" required="" name="auth_user" id="username" />
</div>
<div>
<input type="password" placeholder="Clave" required="" name="auth_pass" id="password" />
</div>
<div>
<input name="redirurl" type="hidden" value="$PORTAL_REDIRURL$">
<input type="submit" name="accept" value="Acceder" />
</div>
</form><!-- form -->
</section><!-- content -->
</div><!-- container -->
</body>
</html>