how to make a login page in html

Solutions on MaxInterview for how to make a login page in html by the best coders in the world

showing results for - "how to make a login page in html"
Patience
24 Mar 2016
1<html>
2  <head>
3        <title>
4            Log In or Sign Up
5        </title>
6    </head>
7    <body>
8        <div>
9            <input type="textarea" placeholder="Enter your username">
10            <br>
11            <br>
12            <input type="password" placeholder="Enter your username">
13            <br>
14            <br>
15            <input type="submit" value="Log In">
16            <br>
17            <br>
18        </div>
19        <div>
20            <p>
21                Or Sign Up!
22            </p>
23            <br>
24            <br>
25            <input type="textarea" placeholder="Create a username">
26            <br>
27            <br>
28            <input type="password" placeholder="Create a password">
29            <br>
30            <br>
31            <input type="submit" value="Sign Up">
32        </div>
33    </body>
34</html>
Marvin
09 Mar 2020
1<!doctype html>
2<form name="loginForm" method="post" action="index.html">
3<table width="20%" bgcolor="0099CC" align="center">
4  <tr>
5<td colspan=2><center><font size=4><b>light-net login</b></font></center></td>
6</tr>
7
8<tr>
9<td>Username:</td>
10<td><input type="text" size=25 name="user"></td>
11</tr>
12
13<tr>
14<td>Password:</td>
15<td><input type="Password" size=25 name="pass"></td>
16</tr>
17
18<tr>
19<td ><input type="Reset"></td>
20<td><input type="submit" onclick="return check(this.form)" value="Login"></td>
21</tr>
22
23</table>
24</form>
25<script language="javascript">
26function check(form)
27{
28
29if(form.user.value == "public" && form.pass.value == "peasants")
30{
31	return true;
32}
33else
34{
35	alert("Error Password or Username")
36	return false;
37}
38}
39	      </script>
Matteo
04 Jan 2020
1<html>
2<head>
3<title>Account</title>
4<style>
5body
6{
7	background-color:#ffda08;
8}
9table
10{
11	border:1px white;
12	margin-top:200px;
13	margin-left:500px;
14	background-color:white;
15	padding:20px
16}
17#btn
18{
19	width:200px;
20	height:50px;
21	background-color:#1ee3d2;
22}
23
24</style>
25</head>
26<body>
27	<form name=frmNewAcc>
28		<table border=0 cellspacing=5px>
29	<tr>
30		<th colspan=3><input class=in =text name=txtuname placeholder="Enter your account name"></th>
31	</tr>
32	<tr>
33		<th colspan=3><input class=in type=password name=txtupass placeholder="Enter your new password"></th>
34	</tr>
35	<tr>
36		<th colspan=3><input  class=in type=password name=txtuconfirmpass placeholder="Enter confirmed password"></th>
37	</tr>
38	<tr>
39		<th colspan=3><input id=btn type=button value="Create new account"></th>
40		<a href="Login task 1.html">Go back to login</a>
41	</tr>
42
43	
44</table>
45</form>
46</body>
47</html>
48
49	
Ilyas
12 Jan 2018
1<html>
2      <head>
3    <title>Login page example</title>
4    <style>
5      input{
6        font-size: 20;
7      }
8      body{
9        background-color: red;
10      }
11    </style>
12  </head>
13  <body>
14    <input placeholder="Username"/>
15    <br />
16    <input type="password" placeholder="Password"/>
17    <br/>
18    <br/>
19    <button>Login</button>
20    </body>
21
22</html>
23
Cate
28 Oct 2019
1<!DOCTYPE html>
2<html>
3<head>
4<meta name="viewport" content="width=device-width, initial-scale=1">
5<style>
6body {font-family: Arial, Helvetica, sans-serif;}
7
8/* Full-width input fields */
9input[type=text], input[type=password] {
10  width: 100%;
11  padding: 12px 20px;
12  margin: 8px 0;
13  display: inline-block;
14  border: 1px solid #ccc;
15  box-sizing: border-box;
16}
17
18/* Set a style for all buttons */
19button {
20  background-color: #4CAF50;
21  color: white;
22  padding: 14px 20px;
23  margin: 8px 0;
24  border: none;
25  cursor: pointer;
26  width: 100%;
27}
28
29button:hover {
30  opacity: 0.8;
31}
32
33/* Extra styles for the cancel button */
34.cancelbtn {
35  width: auto;
36  padding: 10px 18px;
37  background-color: #f44336;
38}
39
40/* Center the image and position the close button */
41.imgcontainer {
42  text-align: center;
43  margin: 24px 0 12px 0;
44  position: relative;
45}
46
47img.avatar {
48  width: 40%;
49  border-radius: 50%;
50}
51
52.container {
53  padding: 16px;
54}
55
56span.psw {
57  float: right;
58  padding-top: 16px;
59}
60
61/* The Modal (background) */
62.modal {
63  display: none; /* Hidden by default */
64  position: fixed; /* Stay in place */
65  z-index: 1; /* Sit on top */
66  left: 0;
67  top: 0;
68  width: 100%; /* Full width */
69  height: 100%; /* Full height */
70  overflow: auto; /* Enable scroll if needed */
71  background-color: rgb(0,0,0); /* Fallback color */
72  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
73  padding-top: 60px;
74}
75
76/* Modal Content/Box */
77.modal-content {
78  background-color: #fefefe;
79  margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
80  border: 1px solid #888;
81  width: 80%; /* Could be more or less, depending on screen size */
82}
83
84/* The Close Button (x) */
85.close {
86  position: absolute;
87  right: 25px;
88  top: 0;
89  color: #000;
90  font-size: 35px;
91  font-weight: bold;
92}
93
94.close:hover,
95.close:focus {
96  color: red;
97  cursor: pointer;
98}
99
100/* Add Zoom Animation */
101.animate {
102  -webkit-animation: animatezoom 0.6s;
103  animation: animatezoom 0.6s
104}
105
106@-webkit-keyframes animatezoom {
107  from {-webkit-transform: scale(0)} 
108  to {-webkit-transform: scale(1)}
109}
110  
111@keyframes animatezoom {
112  from {transform: scale(0)} 
113  to {transform: scale(1)}
114}
115
116/* Change styles for span and cancel button on extra small screens */
117@media screen and (max-width: 300px) {
118  span.psw {
119     display: block;
120     float: none;
121  }
122  .cancelbtn {
123     width: 100%;
124  }
125}
126</style>
127</head>
128<body>
129
130<h2>Modal Login Form</h2>
131
132<button onclick="document.getElementById('id01').style.display='block'" style="width:auto;">Login</button>
133
134<div id="id01" class="modal">
135  
136  <form class="modal-content animate" action="/action_page.php" method="post">
137    <div class="imgcontainer">
138      <span onclick="document.getElementById('id01').style.display='none'" class="close" title="Close Modal">&times;</span>
139      <img src="img_avatar2.png" alt="Avatar" class="avatar">
140    </div>
141
142    <div class="container">
143      <label for="uname"><b>Username</b></label>
144      <input type="text" placeholder="Enter Username" name="uname" required>
145
146      <label for="psw"><b>Password</b></label>
147      <input type="password" placeholder="Enter Password" name="psw" required>
148        
149      <button type="submit">Login</button>
150      <label>
151        <input type="checkbox" checked="checked" name="remember"> Remember me
152      </label>
153    </div>
154
155    <div class="container" style="background-color:#f1f1f1">
156      <button type="button" onclick="document.getElementById('id01').style.display='none'" class="cancelbtn">Cancel</button>
157      <span class="psw">Forgot <a href="#">password?</a></span>
158    </div>
159  </form>
160</div>
161
162<script>
163// Get the modal
164var modal = document.getElementById('id01');
165
166// When the user clicks anywhere outside of the modal, close it
167window.onclick = function(event) {
168    if (event.target == modal) {
169        modal.style.display = "none";
170    }
171}
172</script>
173
174</body>
175</html>
176
queries leading to this page
html example login pagehtml code for login pagehow to create login page in htmlhtml code for login and signup pagehow to make a sick login form in htmllogin form html csssimple login page in html login design i htmlhtml make login pagebasic login page htmllog in page html codelogin page with html and csshtml login form user login form htmlhow to make login form in htmllogin and register system html css javascriptlogin form with htmllogin ui htmllogin dashboard html 22how to make a password login html 22 login page html codelogin form c 23 html javascripthtml login and create acchow to add login template in homepage in htmlhtml login page codelogin page html csshtml simple login page codejavascript loginhtml login examplelogin page for admin in html how to make a login page in htmlhow to make login in htmlsimple login form htmlworking login and register form htmlstyle a login page include htmllog in html and csslogin page in htmlhtml file for login pageinteractive html login formhtml login form source codepure login for for htmllogin page simple html codelog in 2f sign up code htmlhtml login page source codesign up or log in htmllogin form codehow to make a login pagetemplate for login page in htmllogin htmlcool login page html codenew page for login form in html create login page in htmlhow to create a login page with password in htmlpage login htmllogin templates htmlhow to make a login page to your website htmlhow to crete an login pagehow to make a html loginlogin app in htmlho to make a log in page in htmlhow to add login page in htmlsimple login html page codesbasic login formhtml create login pagelogin page htmlhtml login templatelogin form in htmllogin html pagelogin and registration htmlhtml how to create a login pagelogin system htmllogin details htmlhtml login screena simple login page in htmlhtml passwort login codehtml code of a login pagehow to make login page htmlhow to create a login form htmlhow to create a working login and signup form htmlhow to create a simple login page using html and csslogin html css javascriptlogin formlogin site htmlhow to make a working login page in htmllogin page csshtml input loginform login htmllogin form with html and csshtml login page login form create in htmlhow to make a html login pagehtml log inhtml how to make a login systemhtml login codelogin form codeingcreate login system htmllogin form html codecss login formhtml login with databasecomo crear un login en htmlhow to make a login page htmllogin page and signup page with htmlhow to create a login page in htmllogin and register page in html with css codehtml template code for login pagehow to make a login system in htmlloguin form htmlw3schools html loginsimple login screen htmllogin form html no csshow to make a login form in htmljavascript class loginhtml login page templatehow to create login form in htmllogin form html templatelogin form htmllogin page html codesimple login form in htmlhtml template sign inlogin code in htmlhtml attractive login button codesimple html login pagehtml loginlogin code htmlhow do you create a login form in htmlcreate login page with html c 23 javascriptform login web formhow to make a sign up and log in in htmlbest login form using html and csshtml login page with databaseaccount login form javascriptlogin page in html with css codebasic login page in htmlhow to make a login formlogin html templatehtml login page codingmake login page htmllogin page using only htmlcreate a login button in htmlhow make a login window in htmlsimple login page in html with css codehow to make a login page in html