-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
29 lines (29 loc) · 895 Bytes
/
popup.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
<html>
<head>
<meta charset="UTF-8">
<script src="jquery-3.5.1.min.js"></script>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<script src="popup.js" type="text/javascript"></script>
<img id="logo" src="img/logo/icon-48.png"></img>
<h2>betygssnittet</h2>
<div id="steg-1" class="button">
<h3>Steg 1</h3>
<button id="login">
Logga in på Ladok
</button>
</div>
<div id="steg-2" class="button">
<h3>Steg 2</h3>
<button id="grades">
Gå till sidan Avslutad utbildning
</button>
</div>
<div id="steg-3" class="button">
<h3>Ditt betygssnitt:</h3>
<h2 id="gpa">...</h2>
<button id="refresh-button">Beräkna</button>
</div>
</body>
</html>