-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDefault.aspx
60 lines (46 loc) · 2.25 KB
/
Default.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
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="ASPNET_Odonto.Login" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<!-- Source bootswatch https://bootswatch.com/quartz/ -->
<!-- Source bootswatch https://bootswatch.com/journal/ -->
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<!-- Bootstrap CSS -->
<!-- <link rel="stylesheet" href="https://bootswatch.com/5/quartz/bootstrap.min.css"> -->
<!-- <link rel="stylesheet" href="https://bootswatch.com/5/journal/bootstrap.min.css"> -->
<!-- <link rel="stylesheet" href="css/bootstrap.min.css"> -->
<link rel="stylesheet" href="css/journal_bootstrap.min.css"/>
<link rel="stylesheet" href="css/signin.css"/>
<link rel="stylesheet" href="css/personal.css"/>
<title>OdonTam</title>
</head>
<body class="text-center">
<div class="row">
<img src="img/banner_03.jpg" alt=""/>
<main class="form-signin">
<form id="form_login" runat="server">
<h3 class="mb-3 fw-normal">Ingrese su usuario y contraseña</h3>
<div class="form-floating">
<asp:TextBox ID="floatingInput" runat="server" placeholder="Usuario" CssClass="form-control"></asp:TextBox>
<label for="floatingInput">Usuario</label>
</div>
<div class="form-floating">
<asp:TextBox ID="floatingPassword" runat="server" placeholder="Password" CssClass="form-control"></asp:TextBox>
<label for="floatingPassword">Contraseña</label>
</div>
<!-- <div class="checkbox mb-3">
<label>
<input type="checkbox" value="recordar"> Recordar
</label>
</div> -->
<asp:Label runat="server" ID="lblLog" CssClass="alert-danger"></asp:Label>
<br />
<br />
<asp:Button ID="BtnLogin" CssClass="w-100 btn btn-lg btn-primary" runat="server" Text="Sign in" OnClick="BtnLogin_Click"/>
<p class="mt-5 mb-3 text-muted">UAT - BCHSZ</p>
</form>
</main>
</div>
</body>
</html>