forked from ViElectronicEntertainment/PAMI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregistro.php
57 lines (57 loc) · 2.44 KB
/
registro.php
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
<?php session_start(); ?>
<!DOCTYPE html>
<html lang="es">
<head>
<!-- Meta Tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="PAMI Plataforma de Administracion de Medios Inteligente ">
<meta name="author" content="Vi Electronic Entertainment">
<link rel="icon" href="favicon.ico">
<title>PAMI | Registro</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css" integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb" crossorigin="anonymous">
<!-- Cover Bootstrap Template -->
<link href="css/cover.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md">
<h2>Registro</h2>
<form role="form" name="registro" action="php/registro.php" method="post">
<div class="form-group">
<label for="username">Nick ó Nombre de usuario</label>
<input type="text" class="form-control" id="username" name="username" placeholder="Nombre de usuario">
</div>
<div class="form-group">
<label for="fullname">Nombres</label>
<input type="text" class="form-control" id="firtsname" name="firtsname" placeholder="Nombre">
</div>
<div class="form-group">
<label for="fullname">Apellidos</label>
<input type="text" class="form-control" id="lastname" name="lastname" placeholder="Apellidos">
</div>
<div class="form-group">
<label for="email">Correo Electronico</label>
<input type="email" class="form-control" id="email" name="email" placeholder="Correo Electronico">
</div>
<div class="form-group">
<label for="password">Contraseña</label>
<input type="password" class="form-control" id="password" name="password" placeholder="Contraseña">
</div>
<div class="form-group">
<label for="confirm_password">Confirmar Contraseña</label>
<input type="password" class="form-control" id="confirm_password" name="confirm_password" placeholder="Confirmar Contraseña">
</div>
<div class="btn-group">
<button type="submit" class="btn btn-outline-primary">Registro</button>
<a href="login.php" class="btn btn-outline-info" role="button" aria-pressed="true">Ya tengo cuenta</a>
</div>
</form>
</div>
</div>
</div>
<script src="js/valida_registro.js"></script>
</body>
</html>