Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions New year/adminloginform.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Creative Login page</title>
</head>
<link rel="stylesheet" href="adminlogin.css">
</head>
<body>
<div class="wrapper">

Expand Down Expand Up @@ -37,11 +37,13 @@ <h2>Admin Login</h2>
<button type="submit">Login</button>

<div class="register-link">
<p>Don't have an account? <a href="registration.html">Register</a></p>
<p>Don't have an account? <a href="registrationform.html">Register</a></p>
</div>
</form>
</div>

</div>
<script type="module" src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"></script>
</body>
</html>
12 changes: 9 additions & 3 deletions New year/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,15 @@
<body>
<div class="login-container">
<img src="img/avatar.jpg" alt="Your Name" class="avatar" style="margin-top: 20px;">
<button class="user-login-button" onclick="showUserLoginForm()"><a href="userloginform.html"style="text-decoration: none; text-transform: uppercase;">User Login</a></button>
<button class="admin-login-button" onclick="showAdminLoginForm()"><a href="adminloginform.html" style="text-decoration: none; text-transform: uppercase;">Admin Login</a></button>
<button class="register-button" onclick="showUserLoginForm()"><a href="registrationform.html" style="text-decoration: none; text-transform: uppercase;">Register</a></button>
<a class="user-login-button" href="userloginform.html" style="text-decoration: none; text-transform: uppercase;">
<button>User Login</button>
</a>
<a class="admin-login-button" href="adminloginform.html" style="text-decoration: none; text-transform: uppercase;">
<button>Admin Login</button>
</a>
<a class="register-button" href="registrationform.html" style="text-decoration: none; text-transform: uppercase;">
<button>Register</button>
</a>
</div>
</body>

Expand Down
10 changes: 7 additions & 3 deletions New year/userloginform.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Creative Login page</title>
</head>
<link rel="stylesheet" href="userloginform.css">
</head>
<body>
<div class="wrapper">

Expand Down Expand Up @@ -34,14 +34,18 @@ <h2>User Login</h2>
<a href="#">Forgot Password?</a>
</div>

<button type="submit"><a href="task.html" style="text-decoration: none; color: white; text-transform: uppercase;">Login</a></button>

<a href="task.html" style="text-decoration: none; color: white; text-transform: uppercase;">
<button type="button">Login</button>
</a>

<div class="register-link">
<p>Don't have an account? <a href="registrationform.html" style="text-decoration: none;">Register</a></p>
</div>
</form>
</div>

</div>
<script type="module" src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"></script>
</body>
</html>
22 changes: 22 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Task Management System</title>
<meta http-equiv="refresh" content="0; url=New%20year/index.html">
<link rel="icon" href="New%20year/img/avatar.jpg">
<style>
body { font-family: Arial, sans-serif; margin: 40px; }
.container { max-width: 720px; margin: 0 auto; }
a { color: #0069d9; text-decoration: none; }
</style>
</head>
<body>
<div class="container">
<h1>Task Management System</h1>
<p>Redirecting to the app… If you are not redirected automatically, use the link below:</p>
<p><a href="New%20year/index.html">Open the App</a></p>
</div>
</body>
</html>