Spaces:
Runtime error
Runtime error
File size: 2,942 Bytes
39f528e |
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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Divided Webpage</title>
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
}
.container {
display: flex;
height: 100vh;
}
.image-section {
flex: 0.7;
background: url('backgroundimg.jpg') center/cover no-repeat;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
position: relative;
color: #fff;
}
.image-section h1 {
font-size: 3rem;
margin-bottom: 40px;
color: #f0f0f0;
}
.image-section h3 {
font-size: 2rem;
margin-bottom: 10px;
color: #f0f0f0;
text-align: center;
}
.image-section .bottom-text {
position: absolute;
font-size: 2rem;
bottom: 20px;
}
.content-section {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
background-color: #f0f0f0;
}
.login-form {
background-color:rgba(255, 255, 255, 0.5);
border-radius: 10px;
padding: 100px;
box-shadow: 0px 0px 120px rgba(0, 0, 0, 0.2);
text-align: center;
}
.login-form img {
width: 60px;
margin-bottom: 5px;
}
.login-form button {
background-color: #3498db;
color: #fff;
padding: 20px 30px;
border: none;
border-radius: 5px;
cursor: pointer;
}
.login-form input {
width: 90%;
height: 10%; /* Make input box wider */
padding: 20px; /* Increase padding for a larger input box */
margin-bottom: 20px;
border: 1px solid #ccc;
border-radius: 9px;
}
.login-form h2 {
margin-bottom: 40px;
}
.small-image {
width: 100%;
height: 100%;
margin-bottom: 10px;
}
.content {
text-align: center;
padding: 20px;
}
</style>
</head>
<body>
<div class="container">
<div class="image-section">
<h1>Welcome to EASA</h1>
<h3>Discover EASA: Your Elective <BR>Allocation and Feedback Solution!<br>
Experience streamlined elective choices <br>
based on your preferences and <br> academic performance. </h3>
<p class="bottom-text">Revolutionize your education with EASA!</p>
</div>
<div class="content-section">
<div class="content">
<img class="small-image" src="loginabove.png" alt="Small Image" >
<div class="login-form">
<!-- <img src="login-icon.png" alt="Login Icon"> -->
<h2>Login</h2>
<form>
<input type="text" placeholder="Username" required><br>
<input type="password" placeholder="Password" required><br>
</form>
<a href="admin elective.html"><button type="submit">Admin Login</button></a>
<a href="home_page.html"><button type="submit">Student Login</button></a>
</div>
</div>
</div>
</div>
</body>
</html>
|