login.html
1.29 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
<html lang="en">
<head>
	<meta charset="UTF-8">
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	<meta http-equiv="X-UA-Compatible" content="ie=edge">
	<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/1.3.2/jspdf.min.js"></script>
	<script src="{{ url_for('static', filename = 'src/ajax.js') }}"></script>
	<script src="{{ url_for('static', filename = 'src/forms.js') }}"></script>
	<script src="{{ url_for('static', filename = 'src/login.js') }}"></script>
	<link rel="stylesheet" href="{{ url_for('static', filename = 'styles/login.css') }}">
	<!--INCLUIMOS LA FUENTE-->
	<link rel="stylesheet" media="screen" href="https://fontlibrary.org/face/cmu-typewriter" type="text/css" />
	<title>Login</title>
</head>
<body>
	<div class="LoginCard">
		<h2>Usuario:</h2>
		<br>
		<input required type="text" name="usuario" style="margin: auto;">
		<br>
		<br>
		<h2>Contraseña:</h2>
		<br>
		<input required type="password" name="contrasena" style="margin: auto;">
		<button class="PDFButton bottom" onclick="login()">
			Entrar
		</button>
	</div>
	<div id="message" class="MessageContainer" onclick="this.style.display = 'none'" style="display: none;">
		<div class="Message" style="text-align: center;">
			<p id="msg"></p>
			<span class="X">x<span>
		</div>
	</div>
</body>
</html>