-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (50 loc) · 1.92 KB
/
index.html
File metadata and controls
50 lines (50 loc) · 1.92 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
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Iniciar Sesión</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="icon" href="public/Imagenes/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="public/css/index.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
</style>
</head>
<body>
</head>
<body>
<div class="container main">
<header>
<div class="container">
<h1>Sistema de Solicitudes Estudiantiles - UNAL</h1>
</div>
</header>
<br>
<div class="container w-50">
<div class="row justify-content-center">
<div class="col-md-6">
<div class="container">
<img src="public/Imagenes/logo_unal_color.png" class="img-fluid" alt="logoUniversidad" height="150px" width="350px">
</div>
<br>
<form>
<div class="mb-3">
<label for="usuario" class="form-label">Correo Institucional:</label>
<input type="email" class="form-control" id="correo" name="correo" required>
</div>
<div class="mb-3">
<label for="contrasena" class="form-label">Contraseña:</label>
<input type="password" class="form-control" id="contrasena" name="contrasena" required>
</div>
<br>
<button type="submit" class="btn btn-primary login">Iniciar Sesión</button>
</form>
<br>
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>