Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ACT.org #209

Open
sahasrap429 opened this issue Jan 4, 2025 · 0 comments
Open

ACT.org #209

sahasrap429 opened this issue Jan 4, 2025 · 0 comments

Comments

@sahasrap429
Copy link

<title>ACT | College & Career Readiness</title>
ACT®
<header class="hero">
    <h1>Start Your Journey to College & Career Success</h1>
    <p>Register for the ACT, view your scores, and explore career pathways.</p>
    <a href="login.html" class="btn">Sign In to MyACT</a>
</header>

<footer>
    <p>© 2024 ACT, Inc. All rights reserved.</p>
</footer>
<title>Login | MyACT</title>
ACT®
<div class="login-container">
    <h2>Sign In to MyACT</h2>
    <form action="dashboard.html" method="GET">
        <input type="text" placeholder="Username" required>
        <input type="password" placeholder="Password" required>
        <button type="submit">Login</button>
    </form>
</div>

<footer>
    <p>© 2024 ACT, Inc. All rights reserved.</p>
</footer>
<title>Dashboard | MyACT</title>
MyACT
<div class="dashboard-container">
    <h2>Welcome, Sahasra Paramakusum</h2>
    <h3>Your ACT Score Report</h3>
    <div class="score-card">
        <p><strong>Composite Score:</strong> 30</p>
        <p><strong>English:</strong> 29</p>
        <p><strong>Math:</strong> 31</p>
        <p><strong>Reading:</strong> 30</p>
        <p><strong>Science:</strong> 30</p>
    </div>
</div>

<script src="script.js"></script>

body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f8f8f8;
}

.navbar {
display: flex;
justify-content: space-between;
align-items: center;
background: #d2232a;
padding: 15px 20px;
color: white;
}

.navbar ul {
list-style: none;
display: flex;
}

.navbar ul li {
margin: 0 15px;
}

.navbar ul li a {
color: white;
text-decoration: none;
font-weight: bold;
}

.hero {
text-align: center;
padding: 60px;
background: url('https://source.unsplash.com/1600x900/?college,education') no-repeat center center/cover;
color: white;
}

.hero h1 {
font-size: 36px;
}

.btn {
display: inline-block;
padding: 12px 25px;
background: #d2232a;
color: white;
text-decoration: none;
margin-top: 20px;
border-radius: 5px;
}

.login-container {
width: 40%;
margin: 50px auto;
padding: 20px;
background: white;
text-align: center;
box-shadow: 0 0 10px #ccc;
}

input {
width: 80%;
padding: 10px;
margin: 10px 0;
border: 1px solid #ccc;
}

button {
padding: 10px 20px;
background: #d2232a;
color: white;
border: none;
cursor: pointer;
}

.dashboard-container {
width: 50%;
margin: auto;
padding: 20px;
background: white;
text-align: center;
box-shadow: 0px 0px 10px #ccc;
margin-top: 50px;
}

.score-card {
border: 2px solid black;
padding: 15px;
background: #eaeaea;
margin-top: 20px;
}

function logout() {
alert("You have been logged out.");
window.location.href = "index.html"; // Redirects to homepage
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant