InfoUpdate.js 3.62 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 = () => {
이재연's avatar
이재연 committed
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}`}>
이재연's avatar
이재연 committed
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
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
103
104
105
106
        </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
107
        </div>
이재연's avatar
이재연 committed
108
109
110
111
        <div class="col"></div>
      </div>
    
  );
Kim, Chaerin's avatar
Kim, Chaerin committed
112
113
114
};

export default InfoUpdate;