login.html 1.29 KB
<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>