-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (31 loc) · 1.32 KB
/
index.html
File metadata and controls
31 lines (31 loc) · 1.32 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
<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">
<link rel="stylesheet" href="./css/styles.css">
<link href="https://fonts.googleapis.com/css?family=Ubuntu&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<title>Document</title>
</head>
<body class="container">
<div class='login-container'>
<img class='logo_eca' src='./assets/eca_new_logo.png' />
<h1 data-toggle="tooltip" title="Optimización y Mantenimiento de la Agenda" class='oma'>O M A</h1>
<form >
<input type='text' id="user" class='input-form' placeholder='User'
/>
<input type='password' id="pass" class='input-form' placeholder='Password'
/>
<span onclick="login()" class='btn-sign-up'>
Iniciar Sesión
</span>
</form>
</div>
<script src="./js/login.js" ></script>
<script src="./js/params.js" ></script>
<script src="./js/gui.js" ></script>
</body>
</html>