generated from Newton-School/html-css-js-project-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
login_page.html
43 lines (32 loc) · 1.67 KB
/
login_page.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script defer src="login_script.js"></script>
<title>MySpotify</title>
<link rel="stylesheet" href="style.css">
<!-- <script defer src="search_button.js"></script> -->
<!-- <link rel="icon" href="https://e1.pngegg.com/pngimages/479/641/png-clipart-spotify-macos-style-spotify-logo.png"> -->
<link rel="icon" href="spotify_title_logo-transparent.png">
</head>
<body>
<!-- <button id="login_btn">YourName
<a id="login-to-spotify" href="https://accounts.spotify.com/authorize?client_id=748e9e04d1a24bb08f262476d1653821&response_type=token&redirect_uri=http://localhost:3000/callback&scope=user-read-private%20user-read-email">Name</a>
</button> -->
<div class="login_main_div">
<div class = "login_logo_container">
<img src="https://www.edigitalagency.com.au/wp-content/uploads/Spotify-icon-png-rgb-white.png" alt="spotify logo" width="50px" height="50px">
<span class="spotify_word">Spotify</span>
</div>
<div class="login-main-container">
<div class="login_details">
<h2 class="login-to-spotify">Log in to SpotifyClone</h2>
<button id="spotifyAuthButton" onclick="authorizeWithSpotify()">Log in to Spotify</button>
</div>
</div>
</div>
</body>
</html>
<!-- http://127.0.0.1:5500/login_page.html -->