Untitled
unknown
html
3 years ago
1.4 kB
7
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login Form</title>
<link rel="stylesheet" href="/static/register.css">
<!--- defers means that it loads after the body --->
</head>
<body>
<div class="wrapper">
<div class="title">
Login Form
</div>
<!---* the / things redirects you to the same page */ --->
<div class="form">
<form id="form" method="post" onsubmit="return validateLogin() ">
<div class="inputfield">
<label for="userName">User Name</label>
<input type="text" class="input" id="Fname" name="userName" required >
</div>
<div class="inputfield">
<label for="password">Password</label>
<input type="password" class="input" id="password" name="password" required >
</div>
<div class="inputfield terms">
<label class="check">
<input type="checkbox">
<span class="checkmark"></span>
</label>
<p>זכור אותי בכניסה הבאה?</p>
</div>
<div class="inputfield">
<input type="submit" value="Login" class="btn">
</div>
<p id="error">{{error}}</p>
</form>
</div>
</div>
<script defer src="/static/script.js"></script>
</body>
</html>Editor is loading...