Created
June 12, 2017 07:46
-
-
Save z3t0/2fd49b9e1100c9d21a42d34e1280704b to your computer and use it in GitHub Desktop.
This file contains 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
<form action="{% url 'survey:create_survey' %}" method="post"> | |
{% csrf_token % %} | |
<div class="surveyTitle"> | |
<input type="text" id="title" name="title" value="Untitled Survey"> | |
</div> | |
<p> Questions</p> | |
<div class="questions" id="questions"> | |
</div> | |
<div class="surveyBuilder" > | |
<div class="dropdown"> | |
<input id="btnNewQuestion" class="btnNewQuestion" type="button" value="Add new Question"> | |
<div class="dropdown-content" > | |
<a id="btnNewQuestionText" href="#">Text</a> | |
<a id="btnNewQuestionDropDown" href="#">Dropdown</a> | |
<a id="btnNewQuestionMultipleChoice" href="#">Multiple Choice</a> | |
</div> | |
</div> | |
<div> | |
<input id="btnSubmit" class="btnSubmit" type="submit" value="Create"> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment