-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregistro.html
72 lines (64 loc) · 3.63 KB
/
registro.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!-- <link rel="stylesheet" href="assets/estilo.css"> -->
<link rel="stylesheet" href="assets/bootstrap.min.css">
<link rel="dns-prefetch" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css?family=Raleway:300,400,600" rel="stylesheet" type="text/css">
<!-- <link rel="stylesheet" href="assets/bootstrap.min.css"> -->
<title>Blog api</title>
</head>
<body>
<br><br>
<main class="my-form">
<div class="cotainer">
<div class="row justify-content-center">
<div class="col-md-8">
<div class="card">
<div class="card-header">Register</div>
<div class="card-body">
<form name="my-form" onsubmit="return validform()" action="success.php" method="">
<div class="form-group row">
<label for="full_name" class="col-md-4 col-form-label text-md-right" id="name">Name</label>
<div class="col-md-6">
<input type="text" id="full_name" class="form-control" name="full-name">
</div>
</div>
<div class="form-group row">
<label for="email_address" class="col-md-4 col-form-label text-md-right">E-Mail Address</label>
<div class="col-md-6">
<input type="text" id="email_address" class="form-control" name="email-address" id="email">
</div>
</div>
<div class="form-group row">
<label for="user_name" class="col-md-4 col-form-label text-md-right">Password: </label>
<div class="col-md-6">
<input type="password" id="user_name" class="form-control" name="username" id="password">
</div>
</div>
<div class="form-group row">
<label for="phone_number" class="col-md-4 col-form-label text-md-right">Confirmar password</label>
<div class="col-md-6">
<input type="text" id="phone_number" class="form-control" id="password2">
</div>
</div>
<div class="col-md-6 offset-md-4">
<button type="submit" class="btn btn-primary">
Register
</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</main>
<!-- Codigo de javascript -->
<script src="assets/jquery-3.3.1.js"></script>
<script src="app/registrar.js"></script>
<script src="app/navbar.js"></script>
</body>
</html>