Browse code

Add reset.css to the html files

Dario Rodriguez authored on 09/07/2014 11:59:16
Showing 1 changed files
... ...
@@ -3,6 +3,7 @@
3 3
 <head>
4 4
  <meta charset="utf-8"/>
5 5
  <title>kakumei login</title>
6
+ <link rel="stylesheet" type="text/css" href="reset.css">
6 7
  <link rel="stylesheet" type="text/css" href="style.css">
7 8
 </head>
8 9
 <body>
Browse code

Add charset to the html files

Dario Rodriguez authored on 09/07/2014 11:53:35
Showing 1 changed files
... ...
@@ -1,6 +1,8 @@
1 1
 <!DOCTYPE html>
2 2
 <html>
3
-<head><title>kakumei login</title>
3
+<head>
4
+ <meta charset="utf-8"/>
5
+ <title>kakumei login</title>
4 6
  <link rel="stylesheet" type="text/css" href="style.css">
5 7
 </head>
6 8
 <body>
Browse code

test passing variables using GET, refine login page css

Dario Rodriguez authored on 23/06/2014 21:31:49
Showing 1 changed files
... ...
@@ -6,8 +6,8 @@
6 6
 <body>
7 7
  <div class="centered">
8 8
    <p class='title'>Acceso restringido</p>
9
-   <p><span class='label'>Usuario</span> <input class='rounded' id='user' type ='input' value=''/></p>
10
-   <p><span class='label'>Clave</span> <input class='rounded' id='pass' type ='password' value=''/></p>
9
+   <p class="aligned"><span class='label'>Usuario</span> <input class='almostrounded' id='user' type ='input' value=''/></p>
10
+   <p class="aligned"><span class='label'>Clave</span> <input class='almostrounded' id='pass' type ='password' value=''/></p>
11 11
    <span class='centeredbutton'><input class='rounded' id='dologin' type ='button' value='Acceder'/></span>
12 12
  </div>
13 13
  <script src='script.js'></script>
Browse code

login page skeleton

Dario Rodriguez authored on 21/06/2014 20:53:01
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,15 @@
1
+<!DOCTYPE html>
2
+<html>
3
+<head><title>kakumei login</title>
4
+ <link rel="stylesheet" type="text/css" href="style.css">
5
+</head>
6
+<body>
7
+ <div class="centered">
8
+   <p class='title'>Acceso restringido</p>
9
+   <p><span class='label'>Usuario</span> <input class='rounded' id='user' type ='input' value=''/></p>
10
+   <p><span class='label'>Clave</span> <input class='rounded' id='pass' type ='password' value=''/></p>
11
+   <span class='centeredbutton'><input class='rounded' id='dologin' type ='button' value='Acceder'/></span>
12
+ </div>
13
+ <script src='script.js'></script>
14
+</body>
15
+</html>