-
Notifications
You must be signed in to change notification settings - Fork 0
/
conceptworkshopstudent.html
140 lines (132 loc) · 5.71 KB
/
conceptworkshopstudent.html
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
128
129
130
131
132
133
134
135
136
137
138
139
140
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Nicholas Boss | Concept Workshop Student</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Nicholas Boss - Concept Workshop Student Page">
<meta name="author" content="Nicholas Boss">
<meta property="og:title" content="Nicholas Boss | Concept Workshop Student">
<meta property="og:description" content="Nicholas Boss - Concept Workshop Student Page">
<meta property="og:type" content="website">
<meta property="og:image" content="https://raw.githubusercontent.com/NicholasBoss/farseerind/main/images/nicholas-boss-logo.png">
<meta property="og:url" content="https://nicholasboss.github.io/farseerind/conceptworkshopstudent.html">
<link rel="stylesheet" href="./styles/normalize.css">
<link rel="stylesheet" href="./styles/base.css">
<link rel="stylesheet" href="./styles/medium.css">
<link rel="stylesheet" href="./styles/larger.css">
<link rel="icon" href="favicon.ico">
<script src="./scripts/hamburger-menu.js" defer></script>
<script src="./scripts/getdates.js" defer></script>
<script src="./scripts/projectnames.js" defer></script>
<script src="./scripts/dropdown.js" defer></script>
<script src="./scripts/accordion.js" defer></script>
</head>
<body>
<header>
<a id="logo_link" href="index.html">
<img class="logo" src="./images/nicholas-boss-logo.png" alt="Nicholas Boss Logo">
</a>
<button id="menu" aria-label="hamburger-menu"></button>
<nav>
<ul class="navigation">
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="resume.html">Resume</a>
</li>
<li class="projects">
<a href="projects.html">Projects</a>
<img class="dropbtn" src="./images/angle-down-solid.svg" alt="Angle Down Icon">
<div id="dropdown" class="dropdown-content project-names"></div>
</li>
<li>
<a id="active" href="tainfo.html">TA</a>
</li>
<li class="login">
<button onclick="document.getElementById('id01').style.display='block'">Login</button>
</li>
</ul>
</nav>
<div id="login-form">
<!-- The Modal -->
<div id="id01" class="modal">
<!-- Modal Content -->
<form class="modal-content animate" action="redirect.html" method="get">
<div class="imgcontainer">
<img src="./images/nicholas-boss-logo.png" alt="Avatar" class="avatar">
</div>
<div class="container">
<label><b>Username</b>
<input type="text" placeholder="Enter Username" name="uname" required autocomplete="off"></label>
<label><b>Password</b>
<input type="password" placeholder="Enter Password" name="psw" required autocomplete="off"></label>
<button class="formbtn" type="submit">Login</button>
<button class="formbtn cancelbtn" type="button" onclick="document.getElementById('id01').style.display='none'">Cancel</button>
</div>
</form>
</div>
</div>
</header>
<main id="workshop-main">
<h1>Hello Student</h1>
<p>
INSTRUCTOR NOTE: Only download the files when prompted. Do not download
them beforehand.
</p>
<button class="accordion">CW Game Data</button>
<div class="panel">
<a href="https://docs.google.com/spreadsheets/d/1pVzjRjBHsfUaGfm2fq_Lsg3CuAfmUqW8/edit?usp=sharing&ouid=112272119527246573373&rtpof=true&sd=true" target="_blank">
Game Data
</a>
</div>
<button class="accordion">CW Forward Engineering Code</button>
<div class="panel">
<a href="./files/cwgames-wscript.sql" download="cwgames-wscript.sql">
Download CW FE Code
</a>
</div>
<button class="accordion">CW Games Inserts</button>
<div class="panel">
<a href="./files/cwgames-winserts.sql" download="cwgames-winserts.sql"
>Download CW Games Inserts
</a>
</div>
<button class="accordion">CW Games Selects</button>
<div class="panel">
<a href="./files/cwgamesselects.sql" download="cwgamesselects.sql"
>Download CW Games Selects
</a>
</div>
<p>
ALL FILES ARE COPYRIGHT PROTECTED. DO NOT DISTRIBUTE THESE FILES UNLESS
YOU HAVE WRITTEN CONSENT BY THE MAKER.
</p>
</main>
<footer>
<div class="info">
<p>Nicholas Boss © <span id="currentyear"></span></p>
</div>
<div class="modified">
<p>
<a href="site-plan.html">Site Plan</a>
</p>
<p>Last Modified: <span id="lastmodified"></span></p>
</div>
<div class="contact">
<p class="social">
<a title="Visit my Facebook" href="https://www.facebook.com/nicholas.boss.376/">
<img class="icon" src="images/facebook.svg" alt="Facebook Icon">
</a>
<a title="Visit my LinkedIn" href="https://www.linkedin.com/in/nicholas-boss">
<img class="icon" src="images/linkedin-in.svg" alt="LinkedIn Icon">
</a>
<a title="Visit my GitHub" href="https://github.com/NicholasBoss">
<img class="icon" src="images/github.svg" alt="GitHub Icon">
</a>
</p>
</div>
</footer>
</body>
</html>