InfoUpdate.js 3.64 KB
Newer Older
이재연's avatar
이재연 committed
1
import { Link } from "react-router-dom";
이재연's avatar
이재연 committed
2

Kim, Chaerin's avatar
Kim, Chaerin committed
3
const InfoUpdate = () => {
4
  const id = 1;
이재연's avatar
이재연 committed
5
  return (
우지원's avatar
우지원 committed
6
7
    <div className="container" style={{ background: "#FCF4FF" }}>
      <div className="row">
Kim, Chaerin's avatar
Kim, Chaerin committed
8
        <div>
이재연's avatar
이재연 committed
9
          <label
우지원's avatar
우지원 committed
10
            className="form-label mx-2 my-4"
이재연's avatar
이재연 committed
11
12
13
14
            style={{ fontSize: "18px", fontWeight: "bold" }}
          >
            프로필 정보
          </label>
이재연's avatar
이재연 committed
15
          <Link to={`/profile/${id}`}>
16
17
            <button
              type="button"
우지원's avatar
우지원 committed
18
              className="btn btn-outline-white "
19
20
21
22
23
24
25
26
              style={{
                background: "#E8B7FF",
                fontSize: "13px",
                fontWeight: "bold",
              }}
            >
              확인
            </button>
이재연's avatar
이재연 committed
27
          </Link>
이재연's avatar
이재연 committed
28
        </div>
29
      </div>
우지원's avatar
우지원 committed
30
31
      <div className="col"></div>
      <div className="col">
Kim, Chaerin's avatar
Kim, Chaerin committed
32
        <div>
우지원's avatar
우지원 committed
33
          <div className="row">
34
35
            <div className="d-flex justify-content-center">
              <img
Kim, Chaerin's avatar
Kim, Chaerin committed
36
                src="/cherry.jpg"
37
38
39
40
41
42
43
44
45
46
                className="rounded-circle"
                style={{ height: "320px", width: "320px" }}
              />
            </div>
            <div
              className="row justify-content-center my-3 mx-1"
              style={{ fontSize: "25px", fontWeight: "bold" }}
            >
              CHERRY #0805
            </div>
우지원's avatar
우지원 committed
47
48
            <div className="col-6">
              <div className="input-group mx-2 my-3">
49
50
                <div>
                  <label
우지원's avatar
우지원 committed
51
                    className="form-label "
52
53
54
55
                    style={{ fontSize: "13px", fontWeight: "bold" }}
                  >
                    현재 비밀번호
                  </label>
우지원's avatar
우지원 committed
56
                  <input type="text" className="form-control" />
57
58
59
                </div>
                <div>
                  <label
우지원's avatar
우지원 committed
60
                    className="form-label"
61
62
63
64
                    style={{ fontSize: "13px", fontWeight: "bold" }}
                  >
                     비밀번호
                  </label>
우지원's avatar
우지원 committed
65
                  <input type="text" className="form-control" />
66
67
68
                </div>
                <div>
                  <label
우지원's avatar
우지원 committed
69
                    className="form-label"
70
71
72
73
                    style={{ fontSize: "13px", fontWeight: "bold" }}
                  >
                     비밀번호 확인
                  </label>
우지원's avatar
우지원 committed
74
                  <input type="text" className="form-control" />
이재연's avatar
이재연 committed
75
76
                </div>
              </div>
77
            </div>
우지원's avatar
우지원 committed
78
79
            <div className="col-6">
              <div className="input-group my-3 ">
80
81
                <div>
                  <label
우지원's avatar
우지원 committed
82
                    className="form-label"
83
84
85
86
                    style={{ fontSize: "13px", fontWeight: "bold" }}
                  >
                    현재 전화번호
                  </label>
우지원's avatar
우지원 committed
87
                  <input type="text" className="form-control" />
88
89
90
                </div>
                <div>
                  <label
우지원's avatar
우지원 committed
91
                    className="form-label"
92
93
94
95
                    style={{ fontSize: "13px", fontWeight: "bold" }}
                  >
                     전화번호
                  </label>
우지원's avatar
우지원 committed
96
                  <input type="text" className="form-control" />
97
98
99
                </div>
                <div>
                  <label
우지원's avatar
우지원 committed
100
                    className="form-label"
101
102
103
104
                    style={{ fontSize: "13px", fontWeight: "bold" }}
                  >
                     전화번호 확인
                  </label>
우지원's avatar
우지원 committed
105
                  <input type="text" className="form-control" />
이재연's avatar
이재연 committed
106
107
108
109
                </div>
              </div>
            </div>
          </div>
Kim, Chaerin's avatar
Kim, Chaerin committed
110
        </div>
이재연's avatar
이재연 committed
111
      </div>
우지원's avatar
우지원 committed
112
      <div className="col"></div>
113
    </div>
이재연's avatar
이재연 committed
114
  );
Kim, Chaerin's avatar
Kim, Chaerin committed
115
116
117
};

export default InfoUpdate;