-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDefault.aspx
More file actions
64 lines (58 loc) · 2.81 KB
/
Default.aspx
File metadata and controls
64 lines (58 loc) · 2.81 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
57
58
59
60
61
62
63
64
<%@ Page Language="C#" AutoEventWireup="true" EnableEventValidation="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>iofrm</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/fontawesome-all.min.css">
<link rel="stylesheet" type="text/css" href="css/iofrm-style.css">
<link rel="stylesheet" type="text/css" href="css/iofrm-theme17.css">
</head>
<body>
<form id="form1" runat="server">
<div class="form-body without-side">
<div class="website-logo">
<a href="index.html">
<div class="logo">
<img class="logo-size" src="images/logo-light.svg" alt="">
</div>
</a>
</div>
<div class="row">
<div class="img-holder">
<div class="bg"></div>
<div class="info-holder">
<img src="images/graphic3.svg" alt="">
</div>
</div>
<div class="form-holder">
<div class="form-content">
<div class="form-items">
<h3>Login to account</h3>
<p>Access to the most powerfull tool in the entire design and web industry.</p>
<asp:TextBox ID="txtusername" class="form-control" placeholder="E-mail Address" runat="server"></asp:TextBox>
<asp:TextBox ID="txtpassword" TextMode="Password" class="form-control" placeholder="Password" runat="server"></asp:TextBox>
<div class="form-button">
<asp:Button ID="btnlogin" class="ibtn" runat="server" Text="Login" OnClick="btnlogin_Click" /><a href="forget17.html">Forget password?</a>
</div>
<div class="other-links">
<div class="text">Or login with</div>
<a href="#"><i class="fab fa-facebook-f"></i>Facebook</a><a href="#"><i class="fab fa-google"></i>Google</a><a href="#"><i class="fab fa-linkedin-in"></i>Linkedin</a>
</div>
<div class="page-links">
<a href="register17.html">Register new account</a>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="js/jquery.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/main.js"></script>
</form>
</body>
</html>