-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.php
More file actions
38 lines (30 loc) · 1.34 KB
/
Copy pathsignup.php
File metadata and controls
38 lines (30 loc) · 1.34 KB
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
<?php
?>
<!doctype html>
<html>
<head>
<title>Registrar Usuario</title>
<link rel="stylesheet" href="bootstrap\css\bootstrap.min.css" type="text/css" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="bootstrap\css\bootstrap-theme.css" type="text/css" />
<link href="css/style.css" rel='stylesheet' type='text/css' />
</head>
<body>
<div class="main-page">
<div class="sign-form">
<h4>Sign Up</h4>
<h5><strong>Crear</strong> Cuenta.</h5>
<form method="post" name="registro_user_form" action="guardar_usuario.php">
<input type="text" class="pass" name="txtnombre" placeholder="Nombre" required>
<input type="text" class="pass" name="txtapellido" placeholder="Apellido" required>
<input type="text" class="pass" name="txtcorreo" placeholder="Email address" required>
<input type="password" name="txtpassword" placeholder="Password" required>
<input type="password" name="txtpassword_confirm" class="pass" placeholder="Confirm password" required>
<button class="btn btn-info btn-block" type="submit">Sign up</button>
<p class="center-block mg-t mg-b text-center">Ya tienes una cuenta?</p>
</form>
<a href="index.php" class="button1"><button class="btn btn-info btn-block" type="submit">Login</button></a>
</div>
</div>
</body>
</html>