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>Nuevo usuario</title>
6
+ <link rel="stylesheet" type="text/css" href="reset.css">
6 7
  <link rel="stylesheet" type="text/css" href="newuser.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>Nuevo usuario</title>
3
+<head>
4
+ <meta charset="utf-8"/>
5
+ <title>Nuevo usuario</title>
4 6
  <link rel="stylesheet" type="text/css" href="newuser.css">
5 7
 </head>
6 8
 <body>
Browse code

finish login and newuser screens

Dario Rodriguez authored on 24/06/2014 20:58:30
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,18 @@
1
+<!DOCTYPE html>
2
+<html>
3
+<head><title>Nuevo usuario</title>
4
+ <link rel="stylesheet" type="text/css" href="newuser.css">
5
+</head>
6
+<body>
7
+ <div class="centered">
8
+   <p class='title'>Crear usuario</p>
9
+   <p class='instructions'>Por favor, introduce los siguientes datos para proceder a la creaci&oacute;n de tu nuevo usuario</p>
10
+   <p><span id='errormessage'></span></p>
11
+   <p class="aligned"><span class='label'>Nombre de usuario</span> <input class='almostrounded' id='user' type ='input' value=''/></p>
12
+   <p class="aligned"><span class='label'>Clave</span> <input class='almostrounded' id='pass1' type ='password' value=''/></p>
13
+   <p class="aligned"><span class='label'>Repite la clave</span> <input class='almostrounded' id='pass2' type ='password' value=''/></p>
14
+   <span class='centeredbutton'><input class='rounded' id='donewuser' type ='button' value='Crear'/></span>
15
+ </div>
16
+ <script src='newuser.js'></script>
17
+</body>
18
+</html>