31 lines
781 B
HTML
31 lines
781 B
HTML
<div
|
|
class="first-time-user-popup"
|
|
id="firstTimeUsers"
|
|
role="dialog"
|
|
aria-labelledby="dialogTitle"
|
|
aria-describedby="dialogContent"
|
|
aria-hidden="true">
|
|
<section class="first-time-user-popup-container">
|
|
<div id="dialogContent" class="first-time-user-popup-content">
|
|
<input
|
|
type="button"
|
|
|
|
class="modal-x-out"
|
|
value=✖
|
|
onclick="document.getElementById('firstTimeUsers').remove();">
|
|
<div class="modal-headline">Here you go! Now go write a song!</div>
|
|
<div class="modal-links">
|
|
<h2> Key: </h2>
|
|
<h3> {{ session.output_key }} </h3>
|
|
<p></p>
|
|
<h2> Time Signature: </h2>
|
|
<h3> {{ session.output_signature }} </h3>
|
|
<p></p>
|
|
<h2> Theme: </h2>
|
|
<h3> {{ session.output_theme }} </h3>
|
|
<p></p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</div>
|