InfoUpdate.js 3.31 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
25
26
            <button
              type="button"
              class="btn btn-outline-white "
              style={{
                background: "#E8B7FF",
                fontSize: "13px",
                fontWeight: "bold",
              }}
            >
              확인
            </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"
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
            <div className="d-flex justify-content-center">
48
                  <label
이재연's avatar
이재연 committed
49
                    class="form-label me-3"
50
51
52
53
                    style={{ fontSize: "13px", fontWeight: "bold" }}
                  >
                    현재 비밀번호
                  </label>
이재연's avatar
이재연 committed
54
                  <input type="text" class="form-control" style={{ height: "38px", width: "200px" }} />
55
                </div>
이재연's avatar
이재연 committed
56
57
            <div class="col-6">
              <div class="input-group mx-2 my-3">
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
                <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
75
76
                </div>
              </div>
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
            </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
97
98
99
100
                </div>
              </div>
            </div>
          </div>
Kim, Chaerin's avatar
Kim, Chaerin committed
101
        </div>
이재연's avatar
이재연 committed
102
      </div>
103
104
      <div class="col"></div>
    </div>
이재연's avatar
이재연 committed
105
  );
Kim, Chaerin's avatar
Kim, Chaerin committed
106
107
108
};

export default InfoUpdate;