ChiamakaObitube/AutoMart

View on GitHub
UI/buyer-signup-page.html

Summary

Maintainability
Test Coverage
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <link rel="stylesheet" href="css/user-signup-in.css">
    <link href="https://fonts.googleapis.com/css" rel="stylesheet">
    <title>Buyer Sign Up</title>
</head>

<body>
    <div id="wrapper">
        <header class=" header-main flex">
            <nav>
                <ul class="nav">
                    <li id="logo"><a href="index.html">AutoMart</a></li>
                    <li><a href="seller-signup-page.html">Sell Car</a></li>
                    <li><a href="buyer-signup-page.html">Buy Car</a></li>

                </ul>
            </nav>
        </header>
        <main>
            <main>
                <div class="signup-container">
                    <h1 id='signup'> Please Sign Up here</h1>
                    <p>Already have an account? <span><a href="buyer-signin-page.html"> Sign in</a></span></p>
                    <form action="purchase-order.html">

                        <label for="name">Name</label>
                        <input type="text" id="fname" name="firstname" placeholder="Enter your fullname.." required>

                        <label for="email">Email</label>
                        <input type="email" id="number" placeholder="user@example.com" required>

                        <label for="password">Password</label>
                        <input type="password" class="password" placeholder="Enter Password" required>
                        <label for="password">Confirm Password</label>
                        <input type="password" class="password" placeholder="Confirm Password" required>
                        <a href="purchase-order.html"><input type="submit" value="Submit"></a>
                    </form>

                    <p>By clicking the button, you agree to the terms of use.</p>
                </div>
            </main>
        </main>
        <footer class="footer-main flex">
            <p> &copy; 2019 AutoMart designed by Chiamaka</p>
        </footer>

    </div>

</body>

</html>