From b00fcca6f96ef927830437a7fae0bf01a10e4d4b Mon Sep 17 00:00:00 2001 From: DosmaRina Date: Mon, 23 Oct 2023 13:21:23 +0700 Subject: [PATCH] feat/login®ister --- assets/css/login.css | 151 ++++++++++++++++++++++++++++++++++++++++ assets/css/register.css | 141 +++++++++++++++++++++++++++++++++++++ login.html | 51 ++++++++++++++ register.html | 70 +++++++++++++++++++ 4 files changed, 413 insertions(+) create mode 100644 assets/css/login.css create mode 100644 assets/css/register.css create mode 100644 login.html create mode 100644 register.html diff --git a/assets/css/login.css b/assets/css/login.css new file mode 100644 index 0000000..2d17805 --- /dev/null +++ b/assets/css/login.css @@ -0,0 +1,151 @@ +/* create by dosma rina br manik */ +.login{ + padding: 24px 0px; +} +.login_content{ + width: 100%; + max-width: 480px; + margin: auto; +} +.login_logo{ + width: 120px; + height: 44.4px; + object-fit: contain; + margin: 0px auto; + display: block; +} + +.login_tittle{ + text-align: center; + margin-top: 12px; + font-size: 24px; + font-weight: normal; + font-style: normal; + font-stretch: normal; + line-height: normal; + color: #606060; +} + +.login_form{ + margin-top: 24px; + padding: 24px; + box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2); + width: 100%; + background: white; + display: flex; + flex-direction: column; + box-sizing: border-box; + border-radius: 4px; +} +.login_name{ + display: block; + font-size: 14px; + font-weight: normal; + font-style: normal; + font-stretch: normal; + line-height: normal; + color: #808080; + margin-top: 15px; +} +.login_box{ + border-radius: 4px; + border: 1px solid #d1d3d4; + color: #565252; + padding: 10px; + box-sizing: border-box; + font-size: 16px; + margin-top: 8px; + width: 100%; +} + +.login_forgot{ + text-align: right; + margin-top: 16px; + font-size: 14px; + font-weight: normal; + font-style: normal; + font-stretch: normal; + line-height: normal; + margin-left: auto; + color: orangered; + text-decoration: none; +} + +.login_forgot:hover{ + text-decoration: underline; +} + +.login_button{ + margin-top: 32px; +} +.login_signin{ + padding: 16px; + border-radius: 4px; + border: none; + color: #ffffff; + font-size: 16px; + font-weight: bold; + font-style: normal; + font-stretch: normal; + line-height: 1; + width: 100%; + cursor: pointer; + background: orangered; +} + +.login_button_tittle{ + font-size: 14px; + font-weight: normal; + font-style: normal; + font-stretch: normal; + line-height: 1.14; + color: #808080; + margin: 16px 0px; + display: block; + text-align: center; +} +.login_button_fb{ + padding: 16px; + border-radius: 4px; + border: none; + color: #ffffff; + font-size: 16px; + font-weight: bold; + font-style: normal; + font-stretch: normal; + line-height: 1; + width: 100%; + cursor: pointer; + background: #465daa; + display: flex; + align-items: center; + justify-content: center; +} + +.login_fb{ + filter: brightness(0) invert(1); + height: 20px; + width: 10px; + object-fit: contain; + margin-right: auto; +} +.login_button_tittle_fb{ + color: inherit; + margin-right: auto; +} + +.login_register{ + font-size: 16px; + font-weight: normal; + font-style: normal; + font-stretch: normal; + line-height: normal; + display: block; + margin: 16px auto 0px; + text-decoration: none; + color: orangered; +} + +.login_register:hover{ + text-decoration: underline; +} \ No newline at end of file diff --git a/assets/css/register.css b/assets/css/register.css new file mode 100644 index 0000000..85b3150 --- /dev/null +++ b/assets/css/register.css @@ -0,0 +1,141 @@ +/* create by dosma rina br manik */ +.register{ + display: flex; + width: 100%; + min-height: 100vh; + background-color: #f7f7f7; + box-sizing: border-box; + padding: 24px 0px; +} +.register_content{ + width: 100%; + max-width: 480px; + margin: auto; +} +.register_logo{ + width: 120px; + height: 44.4px; + object-fit: contain; + margin: 0px auto; + display: block; +} +.register_tittle{ + text-align: center; + margin-top: 12px; + font-size: 24px; + font-weight: normal; + font-style: normal; + font-stretch: normal; + line-height: normal; + color: #606060; +} +.register_form_content{ + margin-top: 24px; + padding: 24px; + box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2); + width: 100%; + background: white; + display: flex; + flex-direction: column; + box-sizing: border-box; + border-radius: 4px; +} +.register_fb{ + margin-top: 0px; +} +.register_button_fb{ + padding: 16px; + border-radius: 4px; + border: none; + color: #ffffff; + font-size: 16px; + font-weight: bold; + font-style: normal; + font-stretch: normal; + line-height: 1; + width: 100%; + cursor: pointer; + background: #465daa; + display: flex; + align-items: center; + justify-content: center; +} +.register_img_fb{ + filter: brightness(0) invert(1); + height: 20px; + width: 10px; + object-fit: contain; + margin-right: auto; +} +.register_button_tittle_fb{ + color: inherit; + margin-right: auto; +} +.register_content_label{ + display: flex; + align-items: center; + margin-top: 15px; +} +.register_content_label:before{ + margin-right: 8px; + content: " "; + display: inline-block; + border: 0.5px solid #d1d3d4; + flex-grow: 1; +} +.register_content_label:after{ + margin-left: 8px; + content: " "; + display: inline-block; + border: 0.5px solid #d1d3d4; + flex-grow: 1; +} +.register_name{ + display: block; + font-size: 14px; + font-weight: normal; + font-style: normal; + font-stretch: normal; + line-height: normal; + color: #808080; + margin-top: 15px; +} +.register_box{ + border-radius: 4px; + border: 1px solid #d1d3d4; + color: #565252; + padding: 10px; + box-sizing: border-box; + font-size: 16px; + margin-top: 8px; + width: 100%; +} +.register_btn{ + padding: 16px; + border-radius: 4px; + border: none; + color: #ffffff; + font-size: 16px; + font-weight: bold; + font-style: normal; + font-stretch: normal; + line-height: 1; + width: 100%; + cursor: pointer; + background: orangered; + margin-top: 15px; +} +.register_ready{ + font-size: 16px; + font-weight: normal; + font-style: normal; + font-stretch: normal; + line-height: normal; + display: block; + margin: 16px auto 0px; + text-decoration: none; + color: orangered; +} +.register_ready:hover{ + text-decoration: underline; +} \ No newline at end of file diff --git a/login.html b/login.html new file mode 100644 index 0000000..e66cc75 --- /dev/null +++ b/login.html @@ -0,0 +1,51 @@ + + + + + + + Login - Kyou.id + + + + + + + +
+ +
+ + + + \ No newline at end of file diff --git a/register.html b/register.html new file mode 100644 index 0000000..4d7bb47 --- /dev/null +++ b/register.html @@ -0,0 +1,70 @@ + + + + + + + Register - Kyou.id + + + + + + + +
+
+ +

Let's Start your Hobby Journey!

+ +
+
+ + + + +
+ + + + + + + + + +
+ +
+ Already have an account? Click here! +
+ +
+ +
+ + + + \ No newline at end of file