33 lines
1.2 KiB
Text
33 lines
1.2 KiB
Text
<% include header.ejs %>
|
|
<header>
|
|
<h1><a href="/">match<span class="audio-lighten">.audio</span></a></h1>
|
|
</header>
|
|
<div class="container">
|
|
|
|
<div class="row share-form">
|
|
<div class="col-md-6 col-md-offset-3">
|
|
<% if (error.length > 0) { %>
|
|
<p class="alert alert-danger"><%= error %></p>
|
|
<% } %>
|
|
|
|
<form role="form" method="post" action="/search">
|
|
<div class="input-group input-group-lg">
|
|
<input type="text" name="url" placeholder="Paste link here" class="form-control" autofocus>
|
|
<span class="input-group-btn">
|
|
<input type="submit" class="btn btn-lg btn-custom" value="Share Music">
|
|
</span>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-md-6 col-md-offset-3">
|
|
<p>Make sharing from music services better.
|
|
We match album and track links from Rdio, Spotify, Deezer, Beats Music, Google Music and iTunes and give you back a link with all of them.</p>
|
|
<% var sample = samples[Math.floor(Math.random() * samples.length)] %>
|
|
<p><a href="<%= sample.url %>">Here's an example with <%= sample.artist %>'s <%= sample.album %></a>.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<% include footer.ejs %>
|