Skip to content

Instantly share code, notes, and snippets.

@z3t0
Created June 12, 2017 07:46
Show Gist options
  • Save z3t0/2fd49b9e1100c9d21a42d34e1280704b to your computer and use it in GitHub Desktop.
Save z3t0/2fd49b9e1100c9d21a42d34e1280704b to your computer and use it in GitHub Desktop.
<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