-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
56 lines (50 loc) · 2.52 KB
/
Copy pathindex.php
File metadata and controls
56 lines (50 loc) · 2.52 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
51
52
53
54
55
56
<html lang="es-MX">
<head>
<title>Bionourisso</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Date Time Picker CSS -->
<link rel="stylesheet" href="css/bootstrap-datetimepicker.min.css">
<!-- Main Style CSS -->
<link href="css/style.css" rel="stylesheet">
</head>
<body id="LoginForm" >
<div class="container">
<div class="card card-container">
<div class="main-div">
<div class="panel">
<h1>Bionourisso</h1>
</div>
<form id="Login" class="form-signin" action="php/login.php" method="post">
<input type="text" id="inputVendedor" name="inputVendedor" class="form-control" placeholder="Clave" required autofocus>
<input type="password" id="inputPassword" name="inputPassword" class="form-control" placeholder="Contraseña" required>
<button class="btn btn-lg btn-primary btn-block btn-signin" type="submit">Entrar</button>
</form>
<!--<form id="Login" action="php/login.php" method="post">
<div class="form-group">
<input type="text" class="form-control" id="inputVendedor" name="inputVendedor" placeholder="Vendedor">
</div>
<div class="form-group">
<input type="password" class="form-control" id="inputPassword" name="inputPassword" placeholder="Contraseña">
</div>
<button type="submit" class="btn btn-primary">Entrar</button>
</form>-->
</div>
</div>
</div>
<footer class="footer">
<div class="container">
<span>Desarrollado por: <a href="http://www.pass.com.mx" target="_blank">PASS Consultores</a></span>
</div>
</footer>
</body>
</html>