From fdd3548067464f23da1e5824c64f6ececf480b34 Mon Sep 17 00:00:00 2001 From: kumkum Date: Thu, 4 Apr 2024 11:02:23 +0530 Subject: [PATCH 1/6] copied login page code --- Designs/create_password/asset/style.scss | 0 Designs/create_password/create_password.html | 16 ++++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 Designs/create_password/asset/style.scss create mode 100644 Designs/create_password/create_password.html diff --git a/Designs/create_password/asset/style.scss b/Designs/create_password/asset/style.scss new file mode 100644 index 0000000..e69de29 diff --git a/Designs/create_password/create_password.html b/Designs/create_password/create_password.html new file mode 100644 index 0000000..2aecadd --- /dev/null +++ b/Designs/create_password/create_password.html @@ -0,0 +1,16 @@ + + + + + + login-page + + + + +
+

Sign in

+
+ + +
\ No newline at end of file From 1099f4dae2c848baac8edf2c53db5211b36a41b8 Mon Sep 17 00:00:00 2001 From: kumkum Date: Thu, 4 Apr 2024 11:05:06 +0530 Subject: [PATCH 2/6] copied login page second half code --- Designs/create_password/create_password.html | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/Designs/create_password/create_password.html b/Designs/create_password/create_password.html index 2aecadd..09c21c0 100644 --- a/Designs/create_password/create_password.html +++ b/Designs/create_password/create_password.html @@ -13,4 +13,16 @@

Sign in

-
\ No newline at end of file +
+
+ + +
+ Forgot password* click here +
+ +
+ + + + \ No newline at end of file From 66bd6d37b6cc224b1dffa704ac408363692c9432 Mon Sep 17 00:00:00 2001 From: kumkum Date: Thu, 4 Apr 2024 11:12:54 +0530 Subject: [PATCH 3/6] added card div & made few changes with label --- Designs/create_password/create_password.html | 43 ++++++++++++-------- 1 file changed, 26 insertions(+), 17 deletions(-) diff --git a/Designs/create_password/create_password.html b/Designs/create_password/create_password.html index 09c21c0..20a9a62 100644 --- a/Designs/create_password/create_password.html +++ b/Designs/create_password/create_password.html @@ -1,28 +1,37 @@ + login-page - - + + + -
-

Sign in

-
- - +
+
+

Create Password

+

create a new password.Make sure to make it complex as possible to make it secure

+
+ + +
+
+ + +
+
+ +
+
-
- - -
- Forgot password* click here -
- -
-
- + + + \ No newline at end of file From dbfb86bc3c2e66f00de9d713f984c8a8a1702d6f Mon Sep 17 00:00:00 2001 From: kumkum Date: Thu, 4 Apr 2024 11:18:09 +0530 Subject: [PATCH 4/6] changed title --- Designs/create_password/asset/style.scss | 6 ++++++ Designs/create_password/create_password.html | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/Designs/create_password/asset/style.scss b/Designs/create_password/asset/style.scss index e69de29..1291ca6 100644 --- a/Designs/create_password/asset/style.scss +++ b/Designs/create_password/asset/style.scss @@ -0,0 +1,6 @@ +.container{ + display:flex; + .card{ + max-width: 400px; + } +} \ No newline at end of file diff --git a/Designs/create_password/create_password.html b/Designs/create_password/create_password.html index 20a9a62..655a3bc 100644 --- a/Designs/create_password/create_password.html +++ b/Designs/create_password/create_password.html @@ -4,7 +4,7 @@ - login-page + create-password @@ -20,7 +20,7 @@

Create Password

- +
From fee8d665ff219406ee3d102f71538c9a54f44f1e Mon Sep 17 00:00:00 2001 From: kumkum Date: Thu, 4 Apr 2024 11:52:21 +0530 Subject: [PATCH 5/6] changed button styling --- Designs/create_password/asset/style.css | 12 ++++++++++++ Designs/create_password/asset/style.scss | 15 ++++++++++++++- Designs/create_password/create_password.html | 4 ++-- 3 files changed, 28 insertions(+), 3 deletions(-) create mode 100644 Designs/create_password/asset/style.css diff --git a/Designs/create_password/asset/style.css b/Designs/create_password/asset/style.css new file mode 100644 index 0000000..b4872da --- /dev/null +++ b/Designs/create_password/asset/style.css @@ -0,0 +1,12 @@ +.container .card { + margin: 0 auto; + max-width: 400px; + background-color: #b7b4b4; + padding: 1rem; +} +.container .card .form-label { + font-weight: 400; +} +.container .card .reset-password .btn { + width: 100%; +}/*# sourceMappingURL=style.css.map */ \ No newline at end of file diff --git a/Designs/create_password/asset/style.scss b/Designs/create_password/asset/style.scss index 1291ca6..0144e26 100644 --- a/Designs/create_password/asset/style.scss +++ b/Designs/create_password/asset/style.scss @@ -1,6 +1,19 @@ .container{ - display:flex; + .card{ + margin:0 auto; max-width: 400px; + background-color: #b7b4b4; + padding:1rem; + + .form-label{ + font-weight: 400; + } + + .reset-password{ + .btn{ + width: 100%; + } + } } } \ No newline at end of file diff --git a/Designs/create_password/create_password.html b/Designs/create_password/create_password.html index 655a3bc..4f45703 100644 --- a/Designs/create_password/create_password.html +++ b/Designs/create_password/create_password.html @@ -7,7 +7,7 @@ create-password - + @@ -23,7 +23,7 @@

Create Password

-
+
From f1ce566a80bd20190c97276dc0b44f95d0e46d58 Mon Sep 17 00:00:00 2001 From: kumkum Date: Thu, 4 Apr 2024 12:02:44 +0530 Subject: [PATCH 6/6] added style for fonts,button style changed --- Designs/create_password/asset/style.css | 11 +++++++++++ Designs/create_password/asset/style.scss | 12 +++++++++++- 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/Designs/create_password/asset/style.css b/Designs/create_password/asset/style.css index b4872da..b88bc1a 100644 --- a/Designs/create_password/asset/style.css +++ b/Designs/create_password/asset/style.css @@ -4,9 +4,20 @@ background-color: #b7b4b4; padding: 1rem; } +.container .card h2 { + text-align: center; + font-weight: 700; +} +.container .card p { + text-align: center; +} .container .card .form-label { font-weight: 400; } .container .card .reset-password .btn { width: 100%; + border-radius: 29px; +} +.container .card .form-label { + font-weight: 600; }/*# sourceMappingURL=style.css.map */ \ No newline at end of file diff --git a/Designs/create_password/asset/style.scss b/Designs/create_password/asset/style.scss index 0144e26..3fe8e74 100644 --- a/Designs/create_password/asset/style.scss +++ b/Designs/create_password/asset/style.scss @@ -5,7 +5,13 @@ max-width: 400px; background-color: #b7b4b4; padding:1rem; - + h2{ + text-align: center; + font-weight: 700; + } + p{ + text-align: center; + } .form-label{ font-weight: 400; } @@ -13,7 +19,11 @@ .reset-password{ .btn{ width: 100%; + border-radius: 29px; } } + .form-label{ + font-weight: 600; + } } } \ No newline at end of file