Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
frozen
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CSE6
frozen
Commits
b761f2fe
Commit
b761f2fe
authored
2 years ago
by
Arno Wunderlich
Browse files
Options
Downloads
Patches
Plain Diff
fix button add item was not working with base.html
parent
f87eefa5
No related branches found
No related tags found
1 merge request
!46
Bugfixes (e.g. from bughunt)
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/tjts5901/templates/addItem.html
+39
-24
39 additions, 24 deletions
src/tjts5901/templates/addItem.html
with
39 additions
and
24 deletions
src/tjts5901/templates/addItem.html
+
39
−
24
View file @
b761f2fe
...
...
@@ -5,27 +5,42 @@
{% endblock %}
{% block content %}
<div
class=
"container"
>
<div
class=
"mb-3"
>
<label
for=
"email"
class=
"form-label"
>
Email address
</label>
<input
type=
"email"
class=
"form-control"
id=
"email"
name=
"email"
aria-describedby=
"emailHelp"
>
</div>
<div
class=
"mb-3"
>
<label
for=
"nItem"
class=
"form-label"
>
Item's name
</label>
<input
type=
"text"
class=
"form-control"
id=
"nItem"
name=
"nItem"
>
</div>
<div
class=
"mb-3"
>
<label
for=
"description"
class=
"form-label"
>
Description
</label>
<textarea
class=
"form-control"
id=
"description"
name=
"description"
maxlength=
"700"
></textarea>
</div>
<div
class=
"mb-3"
>
<label
for=
"sPrice"
class=
"form-label"
>
Starting price
</label>
<input
type=
"number"
class=
"form-control"
id=
"sPrice"
name=
"sPrice"
min=
"0"
max=
"100000000"
>
</div>
<div
class=
"mb-3"
>
<label
for=
"image"
class=
"form-label"
>
Image
</label>
<input
type=
"file"
class=
"form-control"
id=
"image"
name=
"image"
>
</div>
<button
type=
"submit"
class=
"btn btn-primary"
>
Submit
</button>
</div>
{% endblock %}
\ No newline at end of file
<body>
<header>
<meta
charset=
"utf-8"
>
<title>
Sell Item
</title>
<link
href=
"https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css"
rel=
"stylesheet"
integrity=
"sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD"
crossorigin=
"anonymous"
>
</header>
<main>
<form
class=
"container-fluid"
action=
"{{ url_for('views.add_item') }}"
method=
"POST"
enctype=
"multipart/form-data"
>
<div
class=
"container"
>
<div
class=
"mb-3"
>
<label
for=
"email"
class=
"form-label"
>
Email address
</label>
<input
type=
"email"
class=
"form-control"
id=
"email"
name=
"email"
aria-describedby=
"emailHelp"
>
</div>
<div
class=
"mb-3"
>
<label
for=
"nItem"
class=
"form-label"
>
Item's name
</label>
<input
type=
"text"
class=
"form-control"
id=
"nItem"
name=
"nItem"
>
</div>
<div
class=
"mb-3"
>
<label
for=
"description"
class=
"form-label"
>
Description
</label>
<textarea
class=
"form-control"
id=
"description"
name=
"description"
maxlength=
"700"
></textarea>
</div>
<div
class=
"mb-3"
>
<label
for=
"sPrice"
class=
"form-label"
>
Starting price
</label>
<input
type=
"number"
class=
"form-control"
id=
"sPrice"
name=
"sPrice"
min=
"0"
max=
"100000000"
>
</div>
<div
class=
"mb-3"
>
<label
for=
"image"
class=
"form-label"
>
Image
</label>
<input
type=
"file"
class=
"form-control"
id=
"image"
name=
"image"
>
</div>
<button
type=
"submit"
class=
"btn btn-primary"
>
Submit
</button>
</div>
</form>
</main>
<footer>
</footer>
</body>
</html>
{% endblock %}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment