Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

ahjoyo / idc0007

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • icd007
  • views
  • index.html
Find file
BlameHistoryPermalink
  • mhasan's avatar
    logout · d4d79fb6
    mhasan committed 6 years ago
    d4d79fb6
index.html 2.12 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
<!DOCTYPE html>
<html lang="en">

<head>
    <link rel="stylesheet" href="css/bootstrap.css">
    <meta charset="utf-8">
    <title>Personal Assistence</title>
</head>

<body style='background-image:url("img/back.jpg"); background-repeat: no-repeat;'>

<nav class="navbar navbar-expand-lg navbar-dark bg-primary" id="navbarColor01">
        <ul class="navbar-nav mr-auto">
            <li class="nav-item">
                <a class="nav-link" href="index.php"> Index </a> &nbsp; &nbsp;
            </li>
            <li class="nav-item">
                <a class="nav-link" href="register.php"> Register </a>&nbsp; &nbsp;
            </li>
            <li class="nav-item">
                <a class="nav-link" href="create.php"> Create List </a>&nbsp; &nbsp;
            </li>
            <li class="nav-item">
                <a class="nav-link" href="view.php"> View List</a>&nbsp; &nbsp;
            </li>
            <li class="nav-item">
                <a class="nav-link" href="faq.php"> FAQ </a>&nbsp; &nbsp;
            </li>
        </ul>
    </nav>

    <h2 style="text-align: center; margin-top:80px"> WELCOME TO YOUR VERY OWN PERSONAL ASSISTENT</h2>
    <p style="text-align: center;"> In modern lifestyle we have to do lot of things, be at different places and communicate with lot of people.
        It gets complicated to manage all this. You have to plan your day, week even a month at a time.
        <br><b> So join us , manage your day with ease.</b></p>

    <form method="POST" action = "index.php">
        <label id="user"> Username:</label>

        <input type="text" name="userName" id="user">
        <br><br>
        <label id="pass"> Password: </label>
        <input type="password" name="pass" id="pass">
        <br><br>
        <input class='btn btn-success'type="submit" name="submit" value="submit">
    </form>
    <br> <br>
    <form class='btn btn-success' method="GET" action="php/logout.php">
        <input type = 'submit' name =' logout' value = 'logout'>
    </form>
    {%  if login is not null %}
        <h3 style="text-align:center;"> Incorrect username and password, please try again!</h3>
    {% endif %}

</body>

</html>