Commit 8bf76673 authored by Willard's avatar Willard

Rename 'new-stall-form' id to 'form'

parent 1f9cf429
......@@ -119,7 +119,7 @@ button:active {
width: 750px;
}
#new-stall-form {
#form {
display: flex;
flex-direction: column;
align-items: center;
......
{% extends "base.html" %} {% block title %}Edit Dish Info{% endblock %} {% block content %}
<h1>Dish Info</h1>
<div id="new-stall-form">
<div id="form">
<form action="{{ url_for('edit_dish', stall_id=stall.id, dish_id=dish.id) }}" enctype="multipart/form-data" method="POST">
{{ form.csrf_token }}
<div class="form-input">
......
......@@ -4,7 +4,7 @@
<h1>Stall Info</h1>
<form action="{{ url_for('edit_stall', stall_id=stall.id) }}" method="POST">
{{ form.csrf_token }}
<div id="new-stall-form">
<div id="form">
<div class="form-input">
<div class="input-row">
{{ form.name.label(class_="field-label") }} {{ form.name(class_="text-field") }}
......
......@@ -2,7 +2,7 @@
<h1>Dish Info</h1>
<form action="{{ url_for('new_dish', stall_id=stall.id) }}" enctype="multipart/form-data" method="POST">
{{ form.csrf_token }}
<div id="new-stall-form">
<div id="form">
<div class="form-input">
<div class="input-row">
{{ form.name.label(class_="field-label") }} {{ form.name(class_="text-field") }}
......
......@@ -4,7 +4,7 @@
<h1>Stall Info</h1>
<form action="{{url_for('new_stall')}}" method="POST">
{{ form.csrf_token }}
<div id="new-stall-form">
<div id="form">
<div class="form-input">
<div class="input-row">
{{ form.name.label(class_="field-label") }} {{ form.name(class_="text-field") }}
......
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