Commit b098a07d authored by Jacob Dylan D. Vitug's avatar Jacob Dylan D. Vitug

editted sign up screen but not finished

parent ff4d8f13
......@@ -77,4 +77,29 @@ body {
.button-cancel {
background-color: white;
border: 1px solid black;
}
.horizontal-align {
display: flex;
justify-content: space-between;
}
.sex-input {
width: 150px;
display: flex;
}
.sex-input input {
display: flex;
}
.sex-input label {
display: block;
}
.sex-inner {
display: flex;
flex-direction: row;
}
\ No newline at end of file
......@@ -29,12 +29,37 @@
<form method="POST" action="{% url 'loginpage' %}">{% csrf_token %}
<div class="login-input-align">
<div class="form-group has-feedback">
<input type="text" name="username" id="username" placeholder="Enter Username">
<div class="form-group has-feedback horizontal-align">
<input type="text" name="fullname" id="fullname" placeholder="Enter Full Name">
<input type="text" name="username" id="username" placeholder="Enter Username">
</div>
<div class="form-group has-feedback">
<div class="form-group has-feedback horizontal-align">
<input type="password" name="password" id="password" placeholder="Enter Password">
<input type="password" name="password" id="password" placeholder="Renter Password">
<input type="password" name="password" id="password" placeholder="Re-enter Password">
</div>
<div class="form-group has-feedback horizontal-align">
<div class="sex-inner">
<label for="sex" class="">Sex:</label>
<div class="sex-input">
<input
type="radio"
id="male"
name="gender"
value="male"
required
/>
<label for="male">Male</label>
<input
type="radio"
id="female"
name="gender"
value="female"
required
/>
<label for="female">Female</label>
</div>
</div>
</div>
<!-- <input type="submit"> -->
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment