July 2017
Intermediate to advanced
374 pages
8h
English
Let's create our login page template, where the existing users need to fill in their username and password to authenticate. The following is the code snippet:
<form action="/login" method="POST">
<div class="login">
<div class="login-screen">
<div class="app-title">
<h1>Login</h1>
</div>
<div class="login-form">
<div class="control-group">
<input type="text" class="login-field" value="" placeholder="username" name="username">
<label class="login-field-icon fui-user" for="login-name"> </label>
</div>
<div class="control-group">
<input type="password" class="login-field" value="" placeholder="password" name="password">
<label class="login-field-icon fui-lock" for="login-pass"> </label> </div> <input type="submit" value="Log in" ...Read now
Unlock full access