Skip to content
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
12 changes: 5 additions & 7 deletions requestwalk.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
text-align: center;
font-size: 20px; /* Makes text larger */
}

.logo-container {
text-align: center;
margin-top: 20px;
Expand Down Expand Up @@ -66,20 +66,18 @@
<div class="container">
<h2>Welcome, {{ session['email'] }}</h2>
<form action="{{ url_for('request_walk') }}" method="post">
<label>How many people?</label>
<input type="number" name="people_count" required><br><br>

<label>Where are you right now?</label>
<input type="text" name="start_location" required><br><br>
<input type="text" name="start_location" placeholder="Enter location" required><br><br>

<label>Where are you going?</label>
<input type="text" name="destination" required><br><br>
<input type="text" name="destination" placeholder="Enter location" required><br><br>

<label>When are you leaving?</label>
<input type="text" name="departure_time" required><br><br>
<input type="text" name="departure_time" placeholder="Enter time" required><br><br>

<label>Describe what you're wearing:</label>
<input type="text" name="description" required><br><br>
<input type="text" name="description" placeholder="Enter description" required><br><br>

<label>Phone Number (Optional):</label>
<input type="text" name="phone_number" pattern="[0-9]+" placeholder="Enter phone number"><br><br>
Expand Down