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

export default InfoUpdate;