124 lines
5.4 KiB
XML
124 lines
5.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:animateLayoutChanges="true"
|
|
android:background="@color/black">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_toolbar"
|
|
android:layout_width="0dp"
|
|
android:layout_height="51.7dp"
|
|
android:background="@color/black"
|
|
android:fontFamily="@font/gmarket_sans_bold"
|
|
android:gravity="center_vertical"
|
|
android:paddingHorizontal="16.7dp"
|
|
android:textColor="@color/color_eeeeee"
|
|
android:textSize="18.3sp"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
tools:text="바로, 상담 가능한 크리에이터" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/ll_login_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:fitsSystemWindows="true"
|
|
android:gravity="center"
|
|
android:orientation="vertical"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="13.3dp"
|
|
android:hint="이메일"
|
|
app:boxBackgroundColor="@color/color_cc333333"
|
|
app:boxBackgroundMode="filled"
|
|
app:boxCornerRadiusBottomEnd="6.7dp"
|
|
app:boxCornerRadiusBottomStart="6.7dp"
|
|
app:boxCornerRadiusTopEnd="6.7dp"
|
|
app:boxCornerRadiusTopStart="6.7dp"
|
|
app:boxStrokeColor="@color/color_cc333333">
|
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
android:id="@+id/et_email"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:fontFamily="@font/gmarket_sans_medium"
|
|
android:importantForAutofill="no"
|
|
android:inputType="textEmailAddress"
|
|
android:paddingVertical="16dp"
|
|
android:textColor="@color/color_eeeeee"
|
|
android:textSize="15sp" />
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="13.3dp"
|
|
android:layout_marginTop="16dp"
|
|
android:hint="비밀번호"
|
|
app:boxBackgroundColor="@color/color_cc333333"
|
|
app:boxBackgroundMode="filled"
|
|
app:boxCornerRadiusBottomEnd="6.7dp"
|
|
app:boxCornerRadiusBottomStart="6.7dp"
|
|
app:boxCornerRadiusTopEnd="6.7dp"
|
|
app:boxCornerRadiusTopStart="6.7dp"
|
|
app:boxStrokeColor="@color/color_cc333333"
|
|
app:endIconMode="password_toggle">
|
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
android:id="@+id/et_password"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:fontFamily="@font/gmarket_sans_medium"
|
|
android:imeOptions="actionDone"
|
|
android:inputType="textPassword"
|
|
android:paddingVertical="16dp"
|
|
android:textColor="@color/color_eeeeee"
|
|
android:textSize="15sp" />
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/tv_login"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="13.3dp"
|
|
android:layout_marginTop="40dp"
|
|
android:background="@drawable/bg_round_corner_6_7_3bb9f1"
|
|
android:fontFamily="@font/gmarket_sans_bold"
|
|
android:gravity="center"
|
|
android:paddingVertical="16dp"
|
|
android:text="로그인"
|
|
android:textColor="@color/white"
|
|
android:textSize="15sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_forgot_password"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="40dp"
|
|
android:fontFamily="@font/gmarket_sans_medium"
|
|
android:text="비밀번호를 잊으셨나요?"
|
|
android:textColor="@color/color_bbbbbb"
|
|
android:textSize="13.3sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_sign_up"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="20dp"
|
|
android:fontFamily="@font/gmarket_sans_medium"
|
|
android:text="보이스온 회원이 아닌가요? 지금 가입하세요."
|
|
android:textColor="@color/color_bbbbbb"
|
|
android:textSize="13.3sp" />
|
|
</LinearLayout>
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|