-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRegistroAspirantes.html
68 lines (61 loc) · 2.42 KB
/
RegistroAspirantes.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
<!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">
<title>Document</title>
<link rel="stylesheet" href="Styles\R_A_Style.css">
<style>
.contenedor{
min-height: 100vh;
width: 100%;
background-image: linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7)),
url(Images/Fondo_PortalAspirantes.png);
background-position: center;
background-size: cover;
position: relative;
height: 100%;
}
</style>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="contenedor">
<header>
<p style="color: white; text-align: center; height: 50px;">
Universidad Autonóma de Tamaulipas
</p>
</header>
<section >
<div class="CajaRegistro">
<h2 >Registro de Aspirantes</h2>
</div>
<div class="Cajas_Reg_Ing">
<div class="Cajas_Reg">
<div class="UserImg"><img src="Images\Icons\iconfinder_285645_user_icon_128px.png"></div>
<button>Registro de nuevo aspirante</button>
</div>
<div class="Cajas_Ing">
<div class="UserImg"><img src="Images\Icons\iconfinder_285645_user_icon_128px.png"></div>
<input type="text" placeholder="Username" name="user" required>
<input type="password" placeholder="password" name="psw" required>
<button>Ingresar</button>
</div>
</div>
</section>
<footer>
<p >
Universidad Autonóma de Tamaulipas. Derechos reservados ©
<br>
Dirección: Matamoros S/N, Juan B. Tijerina y C. Colon C.P. 87000
<br>
Cd. Victoria Tamaulipas México Tel. +52 834 318 1800
<br>
Sitio desarrollado en la DiSA | Políticas de uso y privacidad
</p>
</footer>
</div>
</body>
</html>