Skip to content
Snippets Groups Projects
Forked from IF3110 / TugasBesar1_2017
24 commits ahead of the upstream repository.
register.html 3.15 KiB
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Register Page | Dagojek</title>
    <link rel="stylesheet" type="text/css" href="style.css">
</head>

<body id="register-body">

<div class="container">

    <header id="register-header">
        <h1>
            Dagojek Register<br>
            <small>Create New Account</small>
        </h1>
    </header>

    <section id="register-main">
        <div id="register-panel">
            <form id="register-form" name="registerForm" method="post" action="../controller/RegisterController.php">
                <fieldset>
                    <legend>Sign Up</legend>
                    <table>
                        <tr>
                            <td>
                                Name:
                            </td>
                            <td>
                                <input type="text" placeholder="Your name" id="name" name="name">
                            </td>
                        </tr>
                        <tr>
                            <td>
                                Username:
                            </td>
                            <td>
                                <input id="username" type="text" placeholder="Username" name="username">
                            </td>
                        </tr>
                        <tr>
                            <td>
                                Email:
                            </td>
                            <td>
                                <input id="email" type="email" placeholder="Email address" name="email">
                            </td>
                        </tr>
                        <tr>
                            <td>
                                Password:
                            </td>
                            <td>
                                <input type="password" placeholder="Password" id="password" name="password">
                            </td>
                        </tr>
                        <tr>
                            <td>
                                Confirm Password:
                            </td>
                            <td>
                                <input type="password" placeholder="Confirm password" id="confirm-password" name="confirm-password">
                            </td>
                        </tr>
                        <tr>
                            <td>
                                Phone Number:
                            </td>
                            <td>
                                <input type="number" placeholder="Phone number" id="phone" name="phone">
                            </td>
                        </tr>
                    </table>
                    <input type="checkbox" value="is-driver" name="is_driver"> I want to be a driver as well!
                    <br>
                    <input id="sign-up-btn" type="submit" value="Sign up" disabled>
                    <br>
                </fieldset>
            </form>
        </div>
    </section>

    <footer>

    </footer>

</div>

<!-- Script -->
<script type="application/javascript" src="script.js"></script>
</body>
</html>