akhilome/mantrckr

View on GitHub
ui/sign-in.html

Summary

Maintainability
Test Coverage
<!DOCTYPE html>
<html>
<head>
    <title>Sign Into Your Account</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <!-- enqueue fonts and styles -->
    <link href="https://fonts.googleapis.com/css?family=Poppins:300,400,600" rel="stylesheet">
    <link rel="stylesheet" type="text/css" href="assets/css/main.css">
    <link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/normalize.css@8.0.0/normalize.css">
</head>
<body>
    <form class="container">
        <nav><a href="../index.html">Home</a> | <a href="user.html">User Dashboard</a> | <a href="user-requests.html">Admin Dashboard</a></nav>
        <h1>Sign In</h1>
        <fieldset>
            <input type="email" name="email" placeholder="name@example.com" required>
            <input type="password" name="password" placeholder="Password" required>
            <div class="oneline">
                <input type="checkbox" id="rememberMe" name="rememberMe">
                <label for="rememberMe">Stay Logged in</label>
            </div>
            <input type="submit" class="button" name="submit" value="Log In">
            <div class="after-form">
                <p><a href="#">Forgot Password?</a></p>
                <p>Not Registered? <a href="sign-up.html">Create New Account</a></p>
            </div>
        </fieldset>
    </form>
</body>
</html>