-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (38 loc) · 1.28 KB
/
index.html
File metadata and controls
44 lines (38 loc) · 1.28 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="../style.css">
<link rel="icon" href="data:,">
<link rel="icon" href="../pictures/Logo.png" type="image/icon type">
<script type="module" src="./main.js"></script>
<title>GitLab Account Setup | Software CaRD</title>
</head>
<body>
<h1><a href="../">Software CaRD</a></h1>
<h3>GitLab Account Setup</h3>
<p>
Please click <a href="https://codebase.helmholtz.cloud/-/user_settings/personal_access_tokens"
target="_blank">here</a> to create a personal access token.
Copy it, paste it in the box below, and click "Save".
The token should start with <code>glpat-</code>.
</p>
<p>
The token will be saved in the browser.
Do not use this feature on a shared computer account.
</p>
<p id="already-known"></p>
<p>
<label for="token-input">Token:</label>
<input type="password" id="token-input" name="api-token">
<button id="token-save-button">Save</button>
<br><br>
</p>
<p>
Alternatively you can use OAuth:
</p>
<button id="oauth-helmholtz-button">Connect to Helmholtz</button>
<button id="oauth-jugit-button" disabled>Connect to Jugit</button>
</body>
</html>