Skip to content

Commit c143bd4

Browse files
committed
Updates HTML
1 parent 3048141 commit c143bd4

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
venv/
1+
venv/
2+
.idea

templates/customers.html

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8">
5-
<title>Save Customer</title>
5+
<title>All Customers</title>
66
<link rel="stylesheet" media="screen"
77
href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css">
88
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
@@ -14,7 +14,10 @@
1414
<div class="card" style="padding: 20px">
1515
<div class="card-header">
1616
{% block content %}
17-
<h1>List of Customers</h1>
17+
<h1>
18+
List of Customers
19+
<a class="btn btn-primary" style="float: right" href="/create"> Create New</a>
20+
</h1>
1821
</div>
1922
<div class="card-body">
2023
<form action="/customers" method="get">

0 commit comments

Comments
 (0)