How to Create Login Page : ASP.NET
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Login.aspx.cs" Inherits="CoderBabaSystem.wwwroot.Login" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Coder Baba</title>
<meta charset="UTF-8"/>
<meta name="description" content="Free Web tutorials"/>
<meta name="keywords" content="HTML,CSS,XML,JavaScript"/>
<meta name="author" content="John Doe"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link href="CSS/Header.css" rel="stylesheet" type="text/css"/>
<link href="CSS/footer.css" rel="stylesheet" type="text/css"/>
<link href="CSS/LoginCSS.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<form id="form1" runat="server">
<%--This is Header Section--%>
<header>
<div class="wrapper">
<h1>CODERBABA WEBSITE</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Portfolio</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">Blog</a></li>
</ul>
</nav>
</div>
</header>
<%--Header Section End here--%>
<div style="width:700px;margin-left:350px;margin-top:50px;">
<h2 style="text-align:center;background-color:lightgreen;padding:10px;">Login Form</h2>
</div>
<div class="imgcontainer">
<img src="images/apple.png" width="100" height="100" alt="Avatar" class="avatar"/>
</div>
<div class="container">
<label for="uname"><b>UserName</b></label>
<asp:TextBox ID="txtUserName" runat="server" placeholder="Enter Username"></asp:TextBox>
<label for="psw"><b>Password</b></label>
<asp:TextBox ID="txtPassword" runat="server" placeholder="Enter Password" TextMode="Password"></asp:TextBox>
<asp:Button ID="Button1" runat="server" Text="Login" type="submit" Font-Size="Larger" OnClick="Button1_Click"/>
<label>
<asp:CheckBox ID="CheckBox1" runat="server" Font-Size="Larger" Text="Remember Me"/>
</label>
</div>
<div class="container" style="background-color:#f1f1f1">
<button type="button" class="cancelbtn">Cancel</button>
<span class="psw">Forgot<a href="#">Password?</a></span>
</div>
<br/>
<footer>
<div class="wrapper">
<div id="footer-info">
<p>Copyright@2020 CODERBABA.in All rights reserved</p>
<p><a href="#">Terms of Services</a> || <a href="#">Privacy</a></p>
</div>
<div id="footer-links">
<ul>
<li><h5>Home</h5></li>
<li><a href="#">About us</a></li>
<li><a href="#">Meet the Team</a></li>
<li><a href="#">What we do?</a></li>
<li><a href="#">Careers</a></li>
</ul>
<ul>
<li><h5>Company</h5></li>
<li><a href="#">About us</a></li>
<li><a href="#">Meet the Team</a></li>
<li><a href="#">What we do?</a></li>
<li><a href="#">Careers</a></li>
</ul>
</div>
<div class="clear"></div>
</div>
</footer>
</form>
</body>
</html>
.png)
.png)
Comments
Post a Comment