-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregistroFinal.html
80 lines (58 loc) · 2.44 KB
/
registroFinal.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
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--Bootstrap-->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<!--ruta estilo css-->
<link rel="stylesheet" type="text/css" href="./assets/css/styleRegistro.css">
<title>Registro</title>
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col uno">
<div class="form">
<img src="/assets/img/logo-removebg-preview.png" alt="" width=100px">
<form action="/account/login" method="post">
<input type="email" id="correo" name="correo" placeholder="Email" class="form-control" required="required">
<input type="password" id="password" name="password" placeholder="Contraseña" class="form-control"
required="required">
<input type="password" class="form-control" id="password2" name="password2"
placeholder="Confirma tu contraseña" required="required">
<!--Radio button -->
<aside class="checkbox-list">
<!-- label -->
<label class="check-item">
<input type="radio" name="interests" />
<span>Postulante</span>
</label>
<!-- label -->
<label class="check-item">
<input type="radio" name="interests" />
<span>Reclutador</span>
</label>
</aside>
<button type="submit" style="font-weight: bold;">Registrate</button>
<p class="message"> ¿Ya tienes cuenta?
<a href="/LoginFinal.html" type="submit" role="button">Ingresa aqui</a>
</p>
<br>
</form>
</div>
</div>
<div class="col dos" >
<div class="form2" >
<img src="/assets/img/color1.png" alt="" width=300px">
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4"
crossorigin="anonymous"></script>
</body>
</html>