SignUp.tsx 1.28 KB
Newer Older
1
import React from "react";
Jiwon Yoon's avatar
Jiwon Yoon committed
2

3
type SignUpProps = {};
Jiwon Yoon's avatar
Jiwon Yoon committed
4

5
export const SignUp = ({}: SignUpProps) => (
Lee SeoYeon's avatar
Lee SeoYeon committed
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
  <div className="flex justify-center mt-3">
    <div className="text-slate-300 text-xl font-bold">
      <label className="block text-gray-700 text-sm font-bold mb-2 mt-3">
        이름
      </label>
      <input
        className="shadow appearance-none border rounded  py-2 px-3 text-gray-60"
        id="name"
        type="name"
        placeholder="이름을 입력하세요"
      />
      <label className="block text-gray-700 text-sm font-bold mb-2 mt-3">
        이메일
      </label>
      <input
        className="shadow appearance-none border rounded  py-2 px-3 text-gray-70"
        id="email"
        type="email"
        placeholder="이메일을 입력하세요"
      />
Jiwon Yoon's avatar
Jiwon Yoon committed
26

Lee SeoYeon's avatar
Lee SeoYeon committed
27
28
29
30
31
32
33
34
35
      <label className="block text-gray-700 text-sm font-bold mb-2 mt-3">
        비밀번호
      </label>
      <input
        className="shadow appearance-none border rounded py-2 px-3 text-gray-70"
        id="username"
        type="password"
        placeholder="비밀번호를 입력하세요"
      />
36
37
38
39
      <div className="text-center">
        <button className="bg-themeColor text-white border rounded w-100 py-2 px-3 mt-3">
          회원가입
        </button>
Lee SeoYeon's avatar
Lee SeoYeon committed
40
      </div>
Jiwon Yoon's avatar
Jiwon Yoon committed
41
    </div>
Lee SeoYeon's avatar
Lee SeoYeon committed
42
  </div>
43
);