-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (53 loc) · 2.62 KB
/
index.html
File metadata and controls
53 lines (53 loc) · 2.62 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="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>ShuffleBum</title>
</head>
<body class="flex">
<main class="mainContent flex">
<div class="smartphone flex">
<div class="top">
<div class="title">
<h1>Shufflebum</h1>
<p class="description">A simple tool that let you automatically find an album to listen to from your entire discogs collection.</p>
</div>
<div class="usernameField">
<div class="userField flex">
<input type="text" name="username" class="userID" placeholder="Discogs' Username" autocomplete="off" autosuggest="off">
<span class="usernameButton btn">Send</span>
</div>
<!--<span class="resetUserID btn not-active">Reset</span>-->
<div class="welcome flex">
<div class="hi"></div>
</div>
</div>
</div>
<div class="errorEmpty not-active">
<h4 class="instructions">Oops, the username you have choose exist but there is no items in his collection. Please check this following instructions then try again by clicking on <span>Reset</span> button.</h4>
<li class="rule">Choose an other username.</li>
<li class="rule">If you're the owner’s collection, you must add first some items in your collection by going to Discogs.</li>
</div>
<div class="error404 not-active">
<h4 class="instructions">Be sure those two required rules are valid then try again by clicking on <span>Reset</span> button.</h4>
<li class="rule">The username must exist.</li>
<li class="rule">The owner’s collection must be public.</li>
</div>
<div class="randomAlbum not-active flex">
<div class="vinylWrapper">
<span class="vinyl not-active"></span>
</div>
<span class="artistName not-active"></span>
<span class="albumTitle not-active"></span>
</div>
<div class="randomButton not-active">
<span class="randomAlbumBtn btn">Randomize</span>
<span class="resetUserID btn not-active">Reset</span>
</div>
</div>
</main>
<script src="main.js"></script>
</body>
</html>