Skip to content
Merged
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
98 changes: 98 additions & 0 deletions addOfficerForm.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9" crossorigin="anonymous">
<link rel="stylesheet" href="styleAnnouncementEvent.css">
<title>Add Events</title>
</head>
<body>
<h1>Add Officer</h1>
<h2>Please enter the required information here.</h2>
<div class = "title">
<p>Name</p>
<textarea class = "titleText"></textarea>
</div>
<div class = "main">
<p>Info</p>
<textarea class = "mainText"></textarea>
</div>
<div class = "picture">
<p>Profile Image</p>
<img src="User Icons\user-group-icon.png" alt="User Pfp" style="position:relative; left:12.5%; width:100px; height:100px;">
<button class = "changePicButton">Change Profile Picture</button>
</div>
<div class = "buttons">
<button class = "btn">Add</button>
<a href = "officers.html">
<button class = "btn">Cancel</button>
</a>
</div>
</body>
<style>
h1{
font-size: 45px;
font-family: Arial, Helvetica, sans-serif;
background-color: lightgray;
text-align: center;
padding: 20px;
border-style: solid;
}
h2{
position:relative;
text-align:center;
}
.title{
display:flex;
left:5%
}
.main{
display:flex;
margin-top:2rem;
}
p{
position:relative;
font-size:25px;
left:1%;
}
.titleText {
position:relative;
left:2%;
resize:none;
width:100rem;
height:4rem;
font-size:30px;
}
.mainText{
position:relative;
left:3.1%;
min-height:10rem;
width:100rem;
}
.picture{
display:flex;
margin-top:2rem;
}
.changePicButton{
position:relative;
left:32%;
height:3rem;
width:13rem;
margin-top:2rem;
}
.buttons{
position:relative;
margin-top:1rem;
left:36%;
}
.btn{
position:relative;
width:250px;
height:50px;
border-color:black;
border-style: solid;
background-color: white;
margin: 0.5rem;
}
</style>
82 changes: 82 additions & 0 deletions announcementAddForm.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9" crossorigin="anonymous">
<link rel="stylesheet" href="styleAnnouncementEvent.css">
<title>Add Announcement</title>
</head>
<body>
<h1>Add Announcement</h1>
<h2>Please enter the required information here.</h2>
<div class = "title">
<p>Title</p>
<textarea class = "titleText"></textarea>
</div>
<div class = "main">
<p>Main Text</p>
<textarea class = "mainText"></textarea>
</div>
<div class = "buttons">
<button class = "btn">Add</button>
<a href = "announcements.html">
<button class = "btn">Cancel</button>
</a>
</div>
</body>
<style>
h1{
font-size: 45px;
font-family: Arial, Helvetica, sans-serif;
background-color: lightgray;
text-align: center;
padding: 20px;
border-style: solid;
}
h2{
position:relative;
text-align:center;
}
.title{
display:flex;
left:5%
}
.main{
display:flex;
margin-top:2rem;
}
p{
position:relative;
font-size:25px;
left:1%;
}
.titleText {
position:relative;
left:2%;
resize:none;
width:100rem;
height:4rem;
font-size:30px;
}
.mainText{
position:relative;
left:2%;
min-height:10rem;
width:96.4rem;
}
.buttons{
position:relative;
margin-top:1rem;
left:36%;
}
.btn{
position:relative;
width:250px;
height:50px;
border-color:black;
border-style: solid;
background-color: white;
margin: 0.5rem;
}
</style>
61 changes: 56 additions & 5 deletions announcements.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9" crossorigin="anonymous">
<link rel="stylesheet" href="styleAnnouncementEvent.css">
<title>Announcements Demo Page</title>
</head>
<body>
<h1>Announcements</h1>
<button class="featureBtn">
<h2>Add</h2>
</button>
<a href = "announcementAddForm.html">
<button class="featureBtn">
<h2>Add</h2>
</button>
</a>
<button class="featureBtn">
<h2>Remove</h2>
</button>
Expand Down Expand Up @@ -42,4 +43,54 @@ <h2>Announcement 6</h2>
<h2>Welcome to Announcements :D</h2>
<p>Choose an announcement on the left!</p>
</section>
</body>
</body>
<style>
body{
margin: 0;
}
.featureBtn{
background-color: white;
position:relative;
left:120px
}
.btn{
display:block;
width:700px;
height:100px;
margin:auto;
border-color:black;
border-style: solid;
background-color: white;
}
div{
position:relative;
left:120px;
top:30px;
overflow-y: auto;
height: 500px;
width: 725px;
border-color:black;
border-style:solid;
background-color: white;
}
h1{
font-size: 45px;
font-family: Arial, Helvetica, sans-serif;
background-color: lightgray;
text-align: center;
padding: 20px;
border-style: solid;
}
section{
position:absolute;
left:1000px;
top:190px;
height: 500px;
width: 725px;
border-color:black;
border-style:solid;
background-color: white;
padding:20px;
}

</style>
82 changes: 82 additions & 0 deletions eventAddForm.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9" crossorigin="anonymous">
<link rel="stylesheet" href="styleAnnouncementEvent.css">
<title>Add Events</title>
</head>
<body>
<h1>Add Events</h1>
<h2>Please enter the required information here.</h2>
<div class = "title">
<p>Title</p>
<textarea class = "titleText"></textarea>
</div>
<div class = "main">
<p>Main Text</p>
<textarea class = "mainText"></textarea>
</div>
<div class = "buttons">
<button class = "btn">Add</button>
<a href = "events.html">
<button class = "btn">Cancel</button>
</a>
</div>
</body>
<style>
h1{
font-size: 45px;
font-family: Arial, Helvetica, sans-serif;
background-color: lightgray;
text-align: center;
padding: 20px;
border-style: solid;
}
h2{
position:relative;
text-align:center;
}
.title{
display:flex;
left:5%
}
.main{
display:flex;
margin-top:2rem;
}
p{
position:relative;
font-size:25px;
left:1%;
}
.titleText {
position:relative;
left:2%;
resize:none;
width:100rem;
height:4rem;
font-size:30px;
}
.mainText{
position:relative;
left:2%;
min-height:10rem;
width:96.4rem;
}
.buttons{
position:relative;
margin-top:1rem;
left:36%;
}
.btn{
position:relative;
width:250px;
height:50px;
border-color:black;
border-style: solid;
background-color: white;
margin: 0.5rem;
}
</style>
Loading