Club-Management-System / public / index.html
index.html
Raw
<!DOCTYPE html>

<html lang="en">

<head>
    <title>WDC Group Project</title>
    <meta charset="UTF-8">
</head>

<body>

    <h1>Easy navigation to the pages</h1>
    <p>Purely for debugging purposes and will be removed later on</p>
    <p>Easy navigation to all pages</p>

    <div>
    <h3>Visiable by all</h3>
    <a href="/main.html">main.html</a> - The main page seen when going to the website.
    <br>
    <a href="/signin_signup.html">signin_signup.html</a> - Used to sign in to an account.
    <br>
    <a href="/signup_page.html">signup_page.html</a> - Used to sign up and create an account.
    <br>
    <a href="/see_all_clubs.html">see_all_clubs.html</a> - Used to see all the avaliable clubs.

    <h3>Visiable by users</h3>
    <a href="/users/join_club.html">users/join_club.html</a> - Used to join a club.
    <br>
    <a href="/users/manage_account.html">users/manage_account.html</a> - Used to manage your account.
    <br>
    <a href="/users/club_page.html">users/account.html</a> - The view of a club page from a users perspective.

    <h3>Visiable by club managers</h3>
    <a href="/club_manager/events.html">club_manager/events.html</a> - Used to create new events and updates.
    <br>
    <a href="/club_manager/see_all_members.html">club_manager/see_all_members.html</a> - Used to view all members of your club.
    <br>
    <a href="/club_manager/seeRSVP.html">club_manager/seeRSVP.html</a> - Used to see all users who have RSVP'd to an event.
    <br>
    <a href="/club_manager/club.html">club_manager/club.html</a> - Used to edit a club page.

    <h3>Visiable by admins</h3>
    <a href="/admin/add_new_admin.html">admin/add_new_admin.html</a> - Used to create a new admin.
    <br>
    <a href="/admin/see_all_users.html">admin/see_all_users.html</a> - Used to view all user accounts.
    <br>
    <a href="/admin/view_all_clubs.html">admin/view_all_clubs.html</a> - Used to view all clubs created.

    <h3>Example</h3>
    <a href="/db_example.html">db_example.html</a> - An exmaple of the use of mysql.
</div>

</body>

</html>