This repository has been archived by the owner on Apr 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
executable file
·61 lines (58 loc) · 2.78 KB
/
index.php
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
<?php
session_start();
if (isset($_SESSION["logged_user"])) {
header("Location: menu.php");
}
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Quick Machine ~ Servicio de visualización de data online</title>
<script src="script/jquery-3.3.1.min.js"></script>
<script src="script/index_script.js"></script>
<script src="script/bootstrap.min.js"></script>
<script defer src="https://use.fontawesome.com/releases/v5.0.13/js/all.js" integrity="sha384-xymdQtn1n3lH2wcu0qhcdaOpQwyoarkgLVxC/wZ5q7h9gHtxICrpcaSUfygqZGOe" crossorigin="anonymous"></script>
<link rel="stylesheet" type"text/css" href="style/bootstrap.min.css"/>
<link rel="stylesheet" type"text/css" href="style/style.css"/>
</head>
<body>
<div id="title">
<div id="title_back"></div>
<h1 id="title_text">QUICK MACHINE</h1>
<div id="title_logo"></div>
<img id="title_icon" src="assets/icon_title.png" alt="icon_img">
</div>
<div>
<div class="trans_rect"></div>
<img class="index_img" src="assets/machine-learning.jpg" alt="">
</div>
<div class='card' id='login_card'>
<div class="card-header" id="index_card">
<h3 id='login_title'>INICIAR SESIÓN</h3>
</div>
<div class="card-body text-left">
<form id="login_form">
<input id="username_input" type="text" placeholder="Nombre de usuario" style="padding:10px" autofocus/>
<input id="pass_input" type="password" placeholder="Contraseña"/>
<div id="cat" style="padding:0; margin-up:10px; display:none">
<label class="col-form-label" id="cat_label">Categoría <i class="fas fa-caret-right"></i></label>
<select id="cat_combo" style="width:170px;height:45px">
<option value="Premium">Premium</option>
<option value="Regular">Regular</option>
<option value="Free">Free</option>
</select>
</div>
<button id="enter_button" type="button" class="btn btn-primary" style="display:block">ENTRAR</button>
<div style="padding:0;margin:0;text-align:right;margin-top:10px">
<a href="#" style="font-size: 13px">¿Olvidaste tu contraseña?</a>
<br />
<div class="ps_link" id="inic_reg">Regístrate</div>
<br />
</div>
<div class="alert alert-danger" id="error_notif"></div>
</form>
</div>
</div>
</body>
</html>