Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New fields #20

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 17 additions & 2 deletions templates/Main/Signup.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,31 @@
<title>Signup</title>
</head>
<body>

<H1>Welcome, Please fill out your details!</H1>
<form method="post" action="{% url 'signUp' %}">
{% csrf_token %}
<input type="text" placeholder="Username">
<input type="password" placeholder="Password">
<input type="text" placeholder="First Name">
<input type="text" placeholder="Last Name">
<input type="email" placeholder="Email Address">
<input type = "text" placeholder = "Describe yourself!">
<ul>
<li>
Goal 1 : <input type = "text" name = "g1">
</li>
</li>
Goal 2 : <input type = "text" name = "g2">
</li>
<li>
Goal 3 : <input type = "text" name = "g3">
</li>
<li>
Goal 4 : <input type = "text" name = "g4">
</li>
</ul>
<input type="submit" value="Submit">
</form>

</body>
</html>
</html>