DevXpart-Learning-Zone / DXLZ-02-01

Happy to start the course with you all. Hope that this will be a great platform for everybody to learn. This repository will give A-Z resources of every class and also resources.
5 stars 0 forks source link

Class 13 Topics & Discussion #13

Open arif98741 opened 5 years ago

arif98741 commented 5 years ago
<?php
        if(isset($_GET['action']) && $_GET['action'] == 'successlogin'){ ?>
            <p class="success" id="message">Successfully Loggedin to dashboard!</p>
        <?php } ?>
arif98741 commented 5 years ago

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
    <link rel="stylesheet" href="style.css">
</head>
<body>

    <div class="wrapper">
        <div class="header">
            <h2>CRUD Application</h2>
            <h3>Registration</h3>
        </div>
        <div class="content">

            <nav>
                <ul>
                    <li><a href="index.html">Home</a></li>
                    <li><a href="#">Profile(<i>Admin</i>)</a></li>
                    <li><a href="userlist.html">User List</a></li>
                    <li><a href="login.html" class="active">Login</a></li>
                    <li><a href="register.html">Register</a></li>
                </ul>
            </nav>
                <br>
                <br>
            <h2>User Registration Page</h2><hr>
            <form action="" method="post">

                <p>Name</p>
                <input type="text" name="name" placeholder="Enter name">

                <p>Username</p>
                <input type="text" name="username" placeholder="Enter username">

                <p>Password</p>
                <input type="password" name="password" placeholder="Enter password"><br>
                <p>Email</p>
                <input type="text" name="name" placeholder="Enter Email">

                <p>Address</p>
                <textarea name="address" id="" cols="55" rows="5"></textarea><br>

                <input type="submit" value="Login" name="login">

                <!-- <p class="success">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Numquam, enim.</p>
 -->

            </form>

        </div>
        <div class="footer">
            <h2>&copy; Copyright 2019- <a href="https://github.com/arif98741" target="_blank">Ariful Islam</a></h2>
        </div>
    </div>

</body>
</html>