Created
June 9, 2013 22:18
-
-
Save connors511/5745479 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="modal-questionare" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="modal-questionare-label" aria-hidden="true" data-backdrop="static"> | |
<div class="modal-header"> | |
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> | |
<h3 id="modal-questionare-label">Vi har lige et par spørgsmål!</h3> | |
</div> | |
<div class="modal-body"> | |
<p>Nu har du haft muligheden for at spille vores spil, og som tak vil vi give dig muligheden for at være med til at bestemme hvordan spillet skal udvikle sig</p> | |
<p>Alt du skal gøre for at være med til at bestemme, er at svare på spørgsmålene nedenfor.</p> | |
<p></p> | |
<form> | |
<div class="control-group"> | |
<label class="control-label" for="q-fun">Hvad var sjovt ved spillet?</label> | |
<div class="controls"> | |
<input id="q-fun" type="text" value=""> | |
</div> | |
</div> | |
<div class="control-group"> | |
<label class="control-label" for="q-boring">Hvad var kedeligt?</label> | |
<div class="controls"> | |
<input id="q-boring" type="text" value=""> | |
</div> | |
</div> | |
<div class="control-group"> | |
<label class="control-label" for="q-learning">Syntes du spillet er lærerigt?</label> | |
<div class="controls"> | |
<input id="q-learning" type="text" value=""> | |
</div> | |
</div> | |
</form> | |
</div> | |
<div class="modal-footer"> | |
<button class="btn" data-dismiss="modal" aria-hidden="true">Luk</button> | |
<input type="button" class="btn btn-primary" value="Send svar" id="submitAnswers" onclick="submitAnswers();"> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment