InfoUpdate.js 3.72 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
              style={{
                background: "#E8B7FF",
                fontSize: "13px",
                fontWeight: "bold",
              }}
            >
이재연's avatar
이재연 committed
25
             돌아가기
26
            </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"
이재연'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
                <div>
                  <label
                    class="form-label"
                    style={{ fontSize: "13px", fontWeight: "bold" }}
                  >
                     비밀번호
                  </label>
우지원's avatar
우지원 committed
80
                  <input type="text" className="form-control" />
81
82
83
                </div>
                <div>
                  <label
우지원's avatar
우지원 committed
84
                    className="form-label"
85
86
87
88
                    style={{ fontSize: "13px", fontWeight: "bold" }}
                  >
                     비밀번호 확인
                  </label>
우지원's avatar
우지원 committed
89
                  <input type="text" className="form-control" />
이재연's avatar
이재연 committed
90
91
                </div>
              </div>
92
            </div>
우지원's avatar
우지원 committed
93
94
            <div className="col-6">
              <div className="input-group my-3 ">
95
96
                <div>
                  <label
우지원's avatar
우지원 committed
97
                    className="form-label"
98
99
100
101
                    style={{ fontSize: "13px", fontWeight: "bold" }}
                  >
                     전화번호
                  </label>
우지원's avatar
우지원 committed
102
                  <input type="text" className="form-control" />
103
104
105
                </div>
                <div>
                  <label
우지원's avatar
우지원 committed
106
                    className="form-label"
107
108
109
110
                    style={{ fontSize: "13px", fontWeight: "bold" }}
                  >
                     전화번호 확인
                  </label>
우지원's avatar
우지원 committed
111
                  <input type="text" className="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>
우지원's avatar
우지원 committed
118
      <div className="col"></div>
119
    </div>
이재연's avatar
이재연 committed
120
  );
Kim, Chaerin's avatar
Kim, Chaerin committed
121
122
123
};

export default InfoUpdate;