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

Fixing #280

Closed
wants to merge 7 commits into from
Closed
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
4 changes: 2 additions & 2 deletions public/allotment.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

ul li {
list-style: none;
background-color: white;
background-color: rgb(0, 0, 0);
margin: 4px;
border-radius: 12px;
display: flex;
Expand Down Expand Up @@ -60,7 +60,7 @@
}

.box {
background-color: white;
background-color: rgb(0, 0, 0);
padding: 16px;
font-size: 18px;
display: flex;
Expand Down
23 changes: 17 additions & 6 deletions public/contact-us.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,24 @@
<title>Contact Us</title>
<link rel="stylesheet" href="./css/contact-us.css">
<style>
/* Style for the message area */
#messageArea {
color: red; /* You can change the color based on your preference */
color: red;
text-align: center;
margin: 0;
}

textarea {
display: fixed;
align-items: center;
justify-content: center;
padding: 30px;
}

textarea::placeholder {
text-align: center;
margin: 10px 0;
}
</style>

</head>

<body>
Expand Down Expand Up @@ -51,13 +62,13 @@ <h2 style="text-align: center;">Contact Us</h2>
<br>
<div>
<label for="">Message :</label>
<textarea required name="message" id="message" rows="4" cols="57"
placeholder="Enter Your Message Given to Organization......"></textarea>
<textarea type="email" required name="message" id="message" style="width: 400px; height: 100px;"
placeholder="Enter Your Message"></textarea>
</div>
<div style="text-align: center;">
<button type="submit" class="button" id="button">Submit</button>
</div>
<div id="messageArea"></div> <!-- Area for displaying messages -->
<div id="messageArea"></div>
</form>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion public/css/faculty_styling.css
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ button:hover {
position: fixed;
margin: 0;
padding: 12px;
background-color: rgb(248, 8, 8);
background-color: rgb(255, 0, 0);
color: white;
font-size: 24px;
text-align: center;
Expand Down
Loading