-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added a couple basic framework pages
- Loading branch information
Showing
4 changed files
with
89 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
<script setup lang="ts"> | ||
</script> | ||
|
||
<template> | ||
<div class="dashboard"> | ||
<h1>Class Registration Dashboard</h1> | ||
<div class="button-container"> | ||
<RouterLink to="./login"> | ||
<button class="uconn-button">Sign Out</button> | ||
</RouterLink> | ||
<RouterLink to="./schedule_viewer"> | ||
<button class="uconn-button">Schedule Viewer</button> | ||
</RouterLink> | ||
<RouterLink to="./courses"> | ||
<button class="uconn-button">Course Search</button> | ||
</RouterLink> | ||
|
||
<button class="uconn-button">Current Classes</button> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<style scoped> | ||
.dashboard { | ||
text-align: center; | ||
} | ||
h1 { | ||
font-size: 2em; | ||
margin-bottom: 30px; | ||
} | ||
.uconn-button { | ||
background-color: #D4A00A; /* UConn Gold */ | ||
color: #000066; /* UConn Navy Blue */ | ||
padding: 20px 40px; | ||
font-size: 1.2em; | ||
border: none; | ||
border-radius: 10px; | ||
margin: 10px; | ||
cursor: pointer; | ||
transition: background-color 0.3s ease; | ||
} | ||
.uconn-button:hover { | ||
background-color: #000066; /* UConn Navy Blue */ | ||
color: #D4A00A; /* UConn Gold */ | ||
} | ||
.button-container { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<script setup lang="ts"> | ||
</script> | ||
|
||
<template> | ||
<div id="head">Uconn</div> | ||
<div id=week> | ||
<div id = time-column>Time</div> | ||
<div class="day">M</div> | ||
<div class="day">T</div> | ||
<div class="day">W</div> | ||
<div class="day">Th</div> | ||
<div class="day">F</div> | ||
</div> | ||
<div id="cur"> | ||
|
||
</div> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters