-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (49 loc) · 1.78 KB
/
index.html
File metadata and controls
54 lines (49 loc) · 1.78 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>auxa</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Forum&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<div class="header">
<h1 class="app-name">Auxa</h1>
<p class="app-description">
Derived from <em>auxilium</em>, Latin for 'help, aid, assistance' Auxa is an AI teaching assistant
and grader designed to helps both students and instructors.
</p>
</div>
<div class="form-container">
<div class="input-group">
<label for="canvas-token">Canvas LMS Access Token</label>
<input
type="password"
id="canvas-token"
placeholder="Enter your Canvas API access token"
autocomplete="off"
/>
<span class="help-text">Credentials stored in your OS keychain and never shared. (macOS: Keychain Access, Windows: Credential Manager, Linux: libsecret)</span>
</div>
<div class="input-group">
<label for="school-link">Canvas LMS School URL</label>
<input
type="text"
id="school-link"
placeholder="e.g., canvas.stanford.edu or usc.instructure.com"
autocomplete="off"
/>
<span class="help-text">Enter your institution's Canvas LMS domain.</span>
</div>
<button class="connect-btn" id="connect-btn">
<span class="btn-text">Connect to Canvas</span>
</button>
</div>
</div>
<script src="renderer.js"></script>
</body>
</html>