-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (63 loc) · 3.41 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
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script type="text/javascript" src="https://npmcdn.com/parse/dist/parse.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Montserrat&display=swap" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=Mukta&display=swap" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=Dancing+Script&display=swap" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=Ma+Shan+Zheng&display=swap" rel="stylesheet" />
<link href="styles.css" rel="stylesheet" />
<title>QuantumX</title>
</head>
<body>
<section class="background">
<div class="allElements">
<div class="mainElements">
<div class="flexBoxFirst">
<div class="logoContainer">
<img class="logoPic" src="images/v1_12.png" />
</div>
<div class="logoContainerText">
<span class="logoText">QuantumX</span>
</div>
</div>
<div class="flexBoxSecond">
<div class="flexBox">
<div class="logoContainerText">
<span class="go">Let's get going...</span>
</div>
<div id="form-container">
<form id="form">
<div>
<div class="name1"><input type="text" id="username" placeholder="Username" name="username"></div>
<div class="name2"><input type="password" id="pass" placeholder="Password" name="pass"></div>
</div>
</form>
<div>
<div id="buttonsContainer">
<div class="click1"><button type="button" id="login">Log In</button></div>
<div class="click2"><button type="button" id="sign">Sign Up</button></div>
</div>
</div>
<span id="returnMessage"></span>
</div>
</div>
</div>
</div>
<div class="flexBoxThird">
<div class="flexBoxThirdDirection">
<div class="dancingTextContainer"><span class="dancingText1">Learn the elements of the modern periodic table with </span></div>
<div class="dancingTextContainer"><span class="dancingText2">Awesome teachable machine!</span></div>
</div>
</div>
</div>
</section>
<script type="text/javascript" src="https://npmcdn.com/parse/dist/parse.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/[email protected]/dist/tf.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@teachablemachine/[email protected]/dist/teachablemachine-image.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/parse/3.1.0/parse.min.js"></script>
<script src="app.js" type="text/javascript"></script>
</body>
</html>