-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLogDoc.aspx
114 lines (94 loc) · 4.33 KB
/
LogDoc.aspx
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="LogDoc.aspx.cs" Inherits="BackRSS.LogDoc" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<!-- Basic -->
<meta charset="UTF-8"/>
<title>Iniciar Sesion - Documentos</title>
<meta name="keywords" content="Documentos RSS" />
<meta name="description" content="Sistema de documentacion RSS - V 1.0" />
<meta name="author" content="RSS" />
<!-- Mobile Metas -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<!-- Web Fonts -->
<link href="http://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800|Shadows+Into+Light" rel="stylesheet" type="text/css"/>
<!-- Vendor CSS -->
<link rel="stylesheet" href="assets/vendor/bootstrap/css/bootstrap.css" />
<link rel="stylesheet" href="assets/vendor/font-awesome/css/font-awesome.css" />
<link rel="stylesheet" href="assets/vendor/magnific-popup/magnific-popup.css" />
<link rel="stylesheet" href="assets/vendor/bootstrap-datepicker/css/datepicker3.css" />
<!-- Theme CSS -->
<link rel="stylesheet" href="assets/stylesheets/theme.css" />
<!-- Skin CSS -->
<link rel="stylesheet" href="assets/stylesheets/skins/default.css" />
<!-- Theme Custom CSS -->
<link rel="stylesheet" href="assets/stylesheets/theme-custom.css"/>
<!-- Head Libs -->
<script src="assets/vendor/modernizr/modernizr.js"></script>
</head>
<body>
<!-- start: page -->
<section class="body-sign">
<div class="center-sign">
<a class="logo pull-left">
<img src="assets/images/LogoLogin.png" height="54" /> DOCUMENTOS RSS
</a>
<div class="panel panel-sign">
<div class="panel-title-sign mt-xl text-right">
<h2 class="title text-uppercase text-bold m-none"><i class="fa fa-user mr-xs"></i> Iniciar Sesion</h2>
</div>
<div class="panel-body">
<form id="Form1" runat="server">
<div class="form-group mb-lg">
<label>Usuario</label>
<div class="input-group input-group-icon">
<asp:TextBox ID="usuarioLogin" runat="server" CssClass="form-control input-lg"></asp:TextBox>
<%--<input name="username" type="text" class="form-control input-lg" />--%>
<span class="input-group-addon">
<span class="icon icon-lg">
<i class="fa fa-user"></i>
</span>
</span>
</div>
</div>
<div class="form-group mb-lg">
<div class="clearfix">
<label class="pull-left">Contraseña</label>
</div>
<div class="input-group input-group-icon">
<asp:TextBox ID="txtPassword" runat="server" CssClass="form-control input-lg" TextMode="Password"></asp:TextBox>
<span class="input-group-addon">
<span class="icon icon-lg">
<i class="fa fa-lock"></i>
</span>
</span>
</div>
</div>
<div class="row">
<div class="col-sm-12 text-center">
<asp:Button ID="logIn" CssClass="mb-xs mt-xs mr-xs btn btn-primary" runat="server" Text="Iniciar Sesión" OnClick="logIn_Click" />
</div>
</div>
</form>
</div>
</div>
<p class="text-center text-muted mt-md mb-md">© Copyright 2019. Representative & Sorting Service S.A. de C.V.</p>
</div>
</section>
<!-- end: page -->
<!-- Vendor -->
<script src="assets/vendor/jquery/jquery.js"></script>
<script src="assets/vendor/jquery-browser-mobile/jquery.browser.mobile.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.js"></script>
<script src="assets/vendor/nanoscroller/nanoscroller.js"></script>
<script src="assets/vendor/bootstrap-datepicker/js/bootstrap-datepicker.js"></script>
<script src="assets/vendor/magnific-popup/magnific-popup.js"></script>
<script src="assets/vendor/jquery-placeholder/jquery.placeholder.js"></script>
<!-- Theme Base, Components and Settings -->
<script src="assets/javascripts/theme.js"></script>
<!-- Theme Custom -->
<script src="assets/javascripts/theme.custom.js"></script>
<!-- Theme Initialization Files -->
<script src="assets/javascripts/theme.init.js"></script>
</body>
</html>