<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>M6 | EgyTalk</title>
</head>
<body>
    <form method="post" action="controller/userManipulation.php">
        <input type="hidden" name="login">
        <label>Username: </label>
        <input type="text" name="username"> <br><br>
        <label>Password: </label>
        <input type="password" name="password"> <br><br>
        <input type="submit" value="Log In"> <br><br><br><br>
    </form>

    <form method="post" action="controller/userManipulation.php">
        <input type="hidden" name="signup">
        <label>Name: </label>
        <input type="text" name="firstname"> <br><br>
        <label>Surname: </label>
        <input type="text" name="surname"> <br><br>
        <label>Username: </label>
        <input type="text" name="username"> <br><br>
        <label>Password: </label>
        <input type="password" name="password"> <br><br>
        <input type="submit" value="Sign Up"> <br><br><br><br>
    </form>

    <form method="post" action="controller/userManipulation.php">
        <input type="hidden" name="logout">
        <input type="submit" value="Log Out"> <br><br>
    </form>
</body>
</html>