spotifytobandcamp/views/index.html

40 lines
1.2 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<head>
<link rel="stylesheet" href="/css/style.css">
</head>
<html>
<body>
<h1>Spotify To Bandcamp</h1>
<p>Recherche dans une playlist les artistes se trouvant aussi sur Bandcamp !</p>
<hr />
{{ if .error }}
<div class="error">
<p>Erreur rencontrée: {{.error}}</p>
</div>
{{ end }}
{{if .connected}}
<div>
<form action="/back" method="post">
<label>Saisir lID de la playlist (sans lurl): <input name="id" type="text" required /></label> <br />
<label for="type-id">Choississez un type dID:</label>
<select name="type-id" id="type-id">
<option value="playlist">Playlist</option>
</select>
<br />
<input type="submit" value="Envoyer" />
</form>
</div>
{{else}}
<a href="/spotify">SE CONNECTER À SPOTIFY ICI</a>
{{end}}
<hr />
<footer>
<img src="https://www.gnu.org/graphics/gplv3-or-later-sm.png" alt="logo GPL3" *>
<p>Ce site est en aucun cas affilié avec Bandcamp ou Spotify.</p>
</footer>
</body>
<html>