diff --git a/School/SchoolApp/Views/Home/Register.cshtml b/School/SchoolApp/Views/Home/Register.cshtml index 383909d..7376979 100644 --- a/School/SchoolApp/Views/Home/Register.cshtml +++ b/School/SchoolApp/Views/Home/Register.cshtml @@ -3,5 +3,49 @@ ViewData["Title"] = "Redister"; } -

Register

+
+

Регистрация

+
+
+
+
+
+
+
+

Введите имя

+
+ + +
+

Введите почту

+
+ + +
+

Введите номер телефона

+
+ + +
+

Введите дату рождения

+
+ + +
+

Введите пароль

+
+ + +
+

Описание элемента

+
+ + +
+
+
+
+
+
+
diff --git a/School/SchoolApp/wwwroot/css/site.css b/School/SchoolApp/wwwroot/css/site.css index f27e5ad..26de935 100644 --- a/School/SchoolApp/wwwroot/css/site.css +++ b/School/SchoolApp/wwwroot/css/site.css @@ -15,4 +15,68 @@ html { body { margin-bottom: 60px; +} + +.title-h3 { + margin: 10px; + text-align: center; + font-size: 26px; + font-weight: bold; +} + +.form-section { + display: flex; + flex-direction: column; + padding: 15px 20px; + margin: 20px 0; + ; + background: linear-gradient(135deg, #161616, #fff); + border-radius: 20px; +} + +.text-field-label { + display: none; +} + +.text-field-input { + display: block; + width: 100%; + padding: 7px; + font-family: inherit; + font-size: 18px; + color: #212529; + background-color: #fff; + background-clip: padding-box; + border: 1px solid #bdbdbd; + border-radius: 0.25rem; +} + +.text-field-textarea { + display: block; + width: 100%; + height: 185px; + padding: 7px; + font-family: inherit; + font-size: 18px; + color: #212529; + background-color: #fff; + background-clip: padding-box; + border: 1px solid #bdbdbd; + border-radius: 0.25rem; + resize: none; +} + +.submit-button-label { + display: none; +} + +.submit-button { + padding: 15px 20px; + margin: 20px 0; + font-size: 20px; + font-weight: bold; + color: white; + background: linear-gradient(135deg, #161616, #fff); + border: none; + border-radius: 20px; } \ No newline at end of file