forked from gicocarlo/BSOE-New-Course-Search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (58 loc) · 2.6 KB
/
index.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta http-equiv="X-UA-Compatible" content="ie=edge"/>
<title>BSOE New Course Search</title>
<link rel="stylesheet" href="src/css/style.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
</head>
<body>
<header>
<h3>BSOE New Course Search</h3>
</header>
<!-- This "msg" class will need to be in a separate page soon. Will make an issue soon. -->
<div class="msg">
<p>
Starting Fall 2019, many BSOE Courses will have changed course numbers
and codes. The content of courses will not be changing, with the
exception of the new introductory Computer Science & Engineering (CSE)
programming sequence. This website is to help fellow slugs quickly find
new courses without having to comb through
<a href="https://undergrad.soe.ucsc.edu/bsoe-course-renumbering"
target="_blank">
this table</a>.
This is still a work in progress so if you notice any bugs or have suggestions
please
<a href="mailto:gnevange@ucsc.edu">email me</a> or make an issue on
<a href="https://github.com/RiceAbove/BSOE-New-Course-Search/issues" target="_blank">github</a>.
<i>NOTE: The only courses available for conversion so far are CMPS, CMPE, &
TIM. EE and AMS Classes are supported on a beta basis.</i>
<strong>This website is not affiliated with UC Santa Cruz or any
of its family of sites.</strong>
</p>
</div>
<section class="container">
<form id="my-form">
<div class="msg"></div>
<div>
<input type="text" id="course" placeholder="Old Course (e.g. CMPE 3, CMPE 12, CMPS 101) / New Course (e.g. CSE 3, CSE 12, CSE 101)">
</div>
<input class="btn" type="submit" value="Convert">
<div class="new-course-full">
<h1 id="new-course">New Course</h1>
<h3 id="desc">Description</h3>
</div>
</form>
</section>
<footer>
<div class="github">
<a href="https://github.com/RiceAbove/BSOE-New-Course-Search" class="fab fa-github fa-3x"
target="_blank"></a>
</div>
<p>© 2019, Gico Carlo Evangelista</p>
</footer>
<script type="text/javascript" src="src/js/main.js"></script>
</body>
</html>