InfoUpdate.js 3.52 KB
Newer Older
이재연's avatar
이재연 committed
1

Kim, Chaerin's avatar
Kim, Chaerin committed
2
const InfoUpdate = () => {
이재연's avatar
이재연 committed
3
4
5
  return (
    <div class="container-md vh-100" style={{ background: "#FCF4FF" }}>
      <div class="row">
Kim, Chaerin's avatar
Kim, Chaerin committed
6
        <div>
이재연's avatar
이재연 committed
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
          <label
            class="form-label mx-2 my-4"
            style={{ fontSize: "18px", fontWeight: "bold" }}
          >
            프로필 정보
          </label>
          <button
            type="button"
            class="btn btn-outline-white "
            style={{
              background: "#E8B7FF",
              fontSize: "13px",
              fontWeight: "bold",
            }}
          >
            확인
          </button>
        </div>
        </div>
        <div class="col"></div>
        <div class="col">
          <div>
            
            <div class="row">
                <div className="d-flex justify-content-center">
                <img src="/image2.jpg" 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>
              <div class="col-6">
                <div class="input-group mx-2 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" />
                  </div>
                  <div>
                    <label
                      class="form-label"
                      style={{ fontSize: "13px", fontWeight: "bold" }}
                    >
                       비밀번호 확인
                    </label>
                    <input type="text" class="form-control" />
                  </div>
                </div>
              </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" />
                  </div>
                  <div>
                    <label
                      class="form-label"
                      style={{ fontSize: "13px", fontWeight: "bold" }}
                    >
                       전화번호 확인
                    </label>
                    <input type="text" class="form-control" />
                  </div>
                </div>
              </div>
            </div>
          </div>
Kim, Chaerin's avatar
Kim, Chaerin committed
103
        </div>
이재연's avatar
이재연 committed
104
105
106
107
        <div class="col"></div>
      </div>
    
  );
Kim, Chaerin's avatar
Kim, Chaerin committed
108
109
110
};

export default InfoUpdate;