mirror of
https://github.com/xfarrow/blink
synced 2025-06-27 09:03:02 +02:00
33 lines
975 B
HTML
33 lines
975 B
HTML
<!DOCTYPE html>
|
|
<html lang="en" >
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>HTML5 Login Form with validation Example</title>
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
|
|
<link rel="stylesheet" href="../css/login.css">
|
|
|
|
</head>
|
|
<body>
|
|
<!-- partial:index.partial.html -->
|
|
<div id="login-form-wrap">
|
|
<h2>Login</h2>
|
|
<form id="login-form">
|
|
<p>
|
|
<input type="text" id="username" name="username" placeholder="Username" required><i class="validation"><span></span><span></span></i>
|
|
</p>
|
|
<p>
|
|
<input type="email" id="email" name="email" placeholder="Email Address" required><i class="validation"><span></span><span></span></i>
|
|
</p>
|
|
<p>
|
|
<input type="submit" id="login" value="Login">
|
|
</p>
|
|
</form>
|
|
<div id="create-account-wrap">
|
|
<p>Not a member? <a href="#">Create Account</a><p>
|
|
</div><!--create-account-wrap-->
|
|
</div><!--login-form-wrap-->
|
|
<!-- partial -->
|
|
|
|
</body>
|
|
</html>
|