Skip to content

Commit ae4f93c

Browse files
author
App Generator
committed
Dummy
1 parent 6c0b280 commit ae4f93c

20 files changed

+59
-28
lines changed

app/templates/accounts/login.html

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,10 @@ <h4 class="text-white font-weight-bolder text-center mt-2 mb-0">
3939
{{ form.hidden_tag() }}
4040

4141
<div class="input-group input-group-outline mb-3">
42-
<label class="form-label">Username</label>
43-
{{ form.username(class="form-control") }}
42+
{{ form.username(class="form-control", placeholder="Username") }}
4443
</div>
4544
<div class="input-group input-group-outline mb-3">
46-
<label class="form-label">Password</label>
47-
{{ form.password(class="form-control", type="password") }}
45+
{{ form.password(class="form-control", type="password", placeholder="Password") }}
4846
</div>
4947
<div class="form-check form-switch d-flex align-items-center mb-3">
5048
<input class="form-check-input" type="checkbox" id="rememberMe">

app/templates/accounts/register.html

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,16 +42,13 @@ <h4 class="text-white font-weight-bolder text-center mt-2 mb-0">
4242
{{ form.hidden_tag() }}
4343

4444
<div class="input-group input-group-outline mb-3">
45-
<label class="form-label">Username</label>
46-
{{ form.username(class="form-control") }}
45+
{{ form.username(class="form-control", placeholder="Username") }}
4746
</div>
4847
<div class="input-group input-group-outline mb-3">
49-
<label class="form-label">Email</label>
50-
{{ form.email(class="form-control", type="email") }}
48+
{{ form.email(class="form-control", type="email", placeholder="Email") }}
5149
</div>
5250
<div class="input-group input-group-outline mb-3">
53-
<label class="form-label">Password</label>
54-
{{ form.password(class="form-control", type="password") }}
51+
{{ form.password(class="form-control", type="password", placeholder="Password") }}
5552
</div>
5653
<div class="form-check form-check-info text-start ps-0">
5754
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault" checked>

app/templates/home/ui-catchers-alerts.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,11 @@
1919
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
2020
<link rel="apple-touch-icon" sizes="76x76" href="/static/assets/img/apple-icon.png">
2121
<link rel="icon" type="image/png" href="/static/assets/img/favicon.png">
22+
2223
<title>
23-
Material Kit 2 by Creative Tim
24+
Flask Material Kit 2 - Alerts | AppSeed
2425
</title>
26+
2527
<!-- Fonts and icons -->
2628
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900|Roboto+Slab:400,700" />
2729
<!-- Nucleo Icons -->

app/templates/home/ui-catchers-modals.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,11 @@
1919
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
2020
<link rel="apple-touch-icon" sizes="76x76" href="/static/assets/img/apple-icon.png">
2121
<link rel="icon" type="image/png" href="/static/assets/img/favicon.png">
22+
2223
<title>
23-
Material Kit 2 by Creative Tim
24+
Flask Material Kit 2 - Modals | AppSeed
2425
</title>
26+
2527
<!-- Fonts and icons -->
2628
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900|Roboto+Slab:400,700" />
2729
<!-- Nucleo Icons -->

app/templates/home/ui-catchers-tooltips-popovers.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,11 @@
1919
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
2020
<link rel="apple-touch-icon" sizes="76x76" href="/static/assets/img/apple-icon.png">
2121
<link rel="icon" type="image/png" href="/static/assets/img/favicon.png">
22+
2223
<title>
23-
Material Kit 2 by Creative Tim
24+
Flask Material Kit 2 - Tooltips | AppSeed
2425
</title>
26+
2527
<!-- Fonts and icons -->
2628
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900|Roboto+Slab:400,700" />
2729
<!-- Nucleo Icons -->

app/templates/home/ui-elements-avatars.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,11 @@
1919
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
2020
<link rel="apple-touch-icon" sizes="76x76" href="/static/assets/img/apple-icon.png">
2121
<link rel="icon" type="image/png" href="/static/assets/img/favicon.png">
22+
2223
<title>
23-
Material Kit 2 by Creative Tim
24+
Flask Material Kit 2 - Avatars | AppSeed
2425
</title>
26+
2527
<!-- Fonts and icons -->
2628
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900|Roboto+Slab:400,700" />
2729
<!-- Nucleo Icons -->

app/templates/home/ui-elements-badges.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,11 @@
1919
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
2020
<link rel="apple-touch-icon" sizes="76x76" href="/static/assets/img/apple-icon.png">
2121
<link rel="icon" type="image/png" href="/static/assets/img/favicon.png">
22+
2223
<title>
23-
Material Kit 2 by Creative Tim
24+
Flask Material Kit 2 - Badges | AppSeed
2425
</title>
26+
2527
<!-- Fonts and icons -->
2628
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900|Roboto+Slab:400,700" />
2729
<!-- Nucleo Icons -->

app/templates/home/ui-elements-breadcrumbs.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,11 @@
1919
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
2020
<link rel="apple-touch-icon" sizes="76x76" href="/static/assets/img/apple-icon.png">
2121
<link rel="icon" type="image/png" href="/static/assets/img/favicon.png">
22+
2223
<title>
23-
Material Kit 2 by Creative Tim
24+
Flask Material Kit 2 - Breadcrumbs | AppSeed
2425
</title>
26+
2527
<!-- Fonts and icons -->
2628
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900|Roboto+Slab:400,700" />
2729
<!-- Nucleo Icons -->

app/templates/home/ui-elements-buttons.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,11 @@
1919
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
2020
<link rel="apple-touch-icon" sizes="76x76" href="/static/assets/img/apple-icon.png">
2121
<link rel="icon" type="image/png" href="/static/assets/img/favicon.png">
22+
2223
<title>
23-
Material Kit 2 by Creative Tim
24+
Flask Material Kit 2 - Buttons | AppSeed
2425
</title>
26+
2527
<!-- Fonts and icons -->
2628
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900|Roboto+Slab:400,700" />
2729
<!-- Nucleo Icons -->

app/templates/home/ui-elements-dropdowns.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,11 @@
1919
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
2020
<link rel="apple-touch-icon" sizes="76x76" href="/static/assets/img/apple-icon.png">
2121
<link rel="icon" type="image/png" href="/static/assets/img/favicon.png">
22+
2223
<title>
23-
Material Kit 2 by Creative Tim
24+
Flask Material Kit 2 - Dropdowns | AppSeed
2425
</title>
26+
2527
<!-- Fonts and icons -->
2628
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900|Roboto+Slab:400,700" />
2729
<!-- Nucleo Icons -->

0 commit comments

Comments
 (0)