signup.tsx 1.32 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import React, { useState } from "react";
import { Link } from "react-router-dom";

export default function Signup() {
  return (
    <div className="flex flex-col ">
      <div className="p-12 w-1/2 h-1/2 md:w-40 md:h-1/6 bg-red-400 place-self-center rounded-2xl">
        <Link to="/">Travel Report</Link>
      </div>
      <form className="py-3 border-b border-white ">
        <input
          className="placeholder:text-slate-300
          bg-white border border-slate-500 rounded-2xl
          py-2 pl-9 pr-3
          focus:border-black"
          placeholder="비밀번호"
          type="text"
          name="password"
          // value={password}
          // onChange={(e) => setPassword(e.target.value)}
        />

        <input
          className="placeholder:text-slate-300
          bg-white border border-slate-500 rounded-2xl
          py-2 pl-9 pr-3
          focus:border-black"
          placeholder="비밀번호"
          type="text"
          name="password"
          // value={password}
          // onChange={(e) => setPassword(e.target.value)}
        />
        <input
          className="placeholder:text-slate-300 bg-white border border-slate-500 rounded-2xl py-2 pl-9 pr-3 focus:border-black"
          placeholder="email"
          type="text"
          name="Id"
        />
      </form>
    </div>
  );
}