main php nya buat form

 avatar
unknown
plain_text
3 years ago
1.4 kB
7
Indexable
/* 
Kelompok 1
Rangga Aldo S       -5027211059
Rendy Anfi Yudha    -5027211006 
Rifki Ahmad Maulana -5027211035
*/

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Form Tekweb Kelompok 1</title>
    <link rel="stylesheet" href="form.css">
</head>
<body>
<div>
        <h1 style="text-align: center;">Registrasi Lomba Marathon</h1>

        <div class="card">
            <form action="hasil.php" method="post">
                <div >
                    <label for="email">Email: </label>
                    <br>
                    <input type="email" name="email" id="email" required placeholder="Email">
                    
                    <br>

                    <label for="user">Username</label>
                    <br>
                    <input type="text" name="user" id="user" required placeholder="Username">

                    <br>

                    <label for="pass">Password: </label>
                    <br>
                    <input type="password" name="pass" id="pass" required placeholder="Password">
                </div>
                
                <br>

                <input type="submit">
        </div>

        <hr>       
</html>
Editor is loading...