forked from kjsce-codecell/registration-terminal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (49 loc) · 1.94 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
<html>
<head>
<meta charset="utf-8" name="viewport"
content="width=device-width, initial-scale=1.0"/>
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
<title>CodeCell Workshop</title>
<link href="css/terminal.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="full_cont">
<div id="title">Git & Github Bootcamp</div>
<!-- Terminal -->
<div class="term">
<div class="term-header">
<button class="term-header-button term-header-button-close"></button>
<button class="term-header-button term-header-button-minimize"></button>
<button class="term-header-button term-header-button-expand"></button>
<div class="term-header-title">
<span>KJSCE@codecell-macbook-pro: ~/python</span>
</div>
</div>
<div id="container" >
<output></output>
<div id="input-line" class="input-line">
<div class="prompt"></div>
<div><input class="cmdline" autofocus /></div>
</div>
</div>
<div id="formlink"><a href="form.html">Click here</a> to register the uncool way</div>
</div>
<!-- Workshop Content -->
<div class="desciption-content">
<div id="desc">
<p>
<!-- To be changed for every workshop -->
Ever made some changes that messed things up and spent hours trying to revert it?<br>
Git to the rescue! And so Codecell is here with our next workshop on <b>Git</b> & <b>Github</b>! <br>
Fasten your seatbelts and get ready to dive into the magnificant world of open source and collaboration using Git!
</p>
</div>
</div>
<footer>Made with <img src=assets/heart.svg></img> by <a href="http://www.kjscecodecell.com/">CodeCell</a></footer>
<!-- Scripts -->
<script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="js/term.js"></script>
<script src="js/input.js"></script>
</id>
</body>
</html>