InfoUpdate.js 4.7 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
5
6
7

  function inputfile(){
    console.log('aa')
  }
8
  const id = 1;
이재연's avatar
이재연 committed
9
  const number = 1234;
이재연's avatar
이재연 committed
10
  return (
우지원's avatar
우지원 committed
11
12
    <div className="container" style={{ background: "#FCF4FF" }}>
      <div className="row">
Kim, Chaerin's avatar
Kim, Chaerin committed
13
        <div>
이재연's avatar
이재연 committed
14
          <label
우지원's avatar
우지원 committed
15
            className="form-label mx-2 my-4"
이재연's avatar
이재연 committed
16
17
18
19
            style={{ fontSize: "18px", fontWeight: "bold" }}
          >
            프로필 정보
          </label>
이재연's avatar
이재연 committed
20
          <Link to={`/profile/${id}`}>
21
22
            <button
              type="button"
우지원's avatar
우지원 committed
23
              className="btn btn-outline-white "
24
25
26
27
28
29
              style={{
                background: "#E8B7FF",
                fontSize: "13px",
                fontWeight: "bold",
              }}
            >
이재연's avatar
이재연 committed
30
              돌아가기
31
            </button>
이재연's avatar
이재연 committed
32
          </Link>
이재연's avatar
이재연 committed
33
        </div>
34
      </div>
이재연's avatar
이재연 committed
35

우지원's avatar
우지원 committed
36
      <div className="col">
Kim, Chaerin's avatar
Kim, Chaerin committed
37
        <div>
우지원's avatar
우지원 committed
38
          <div className="row">
39
40
            <div className="d-flex justify-content-center">
              <img
Kim, Chaerin's avatar
Kim, Chaerin committed
41
                src="/cherry.jpg"
이재연's avatar
이재연 committed
42
                id="imgfile"
이재연's avatar
이재연 committed
43
                className="rounded-circle mt-2"
44
45
46
                style={{ height: "320px", width: "320px" }}
              />
            </div>
이재연's avatar
이재연 committed
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
            <div className="mt-2 d-flex justify-content-end">
              <label for='inputfile' style={{ fontSize: "13px", fontWeight: "bold" }}>사진 선택</label>
              <input type="file" id='inputfile' style={{display:'none'}}/>
            </div>
            <div className="col d-flex justify-content-center">
              <input
                type="text"
                className="form-control my-4 "
                placeholder="사용자명 입력"
                style={{
                  background: "#fcf4ff",
                  borderTop: "0",
                  borderRight: "0",
                  borderLeft: "0",
                  borderBottom: "1",
                  borderColor: "#E8B7FF",
                  height: "38px",
                  width: "130px",
                }}
              />
              <div
                className="justify-content-center ms-2 my-4"
                style={{ fontSize: "25px", fontWeight: "bold" }}
              >
                #{number}
              </div>
73
            </div>
이재연's avatar
이재연 committed
74

이재연's avatar
이재연 committed
75
            <div className="d-flex justify-content-center">
이재연's avatar
이재연 committed
76
77
              <label
                class="form-label me-3"
이재연's avatar
이재연 committed
78
79
80
81
82
                style={{
                  outline: "none",
                  fontSize: "13px",
                  fontWeight: "bold",
                }}
이재연's avatar
이재연 committed
83
84
85
86
87
88
89
90
91
              >
                현재 비밀번호
              </label>
              <input
                type="text"
                class="form-control"
                style={{ height: "38px", width: "200px" }}
              />
              <button
이재연's avatar
이재연 committed
92
93
94
95
96
97
98
99
100
101
                type="button"
                className="btn btn-outline-white ms-2"
                style={{
                  background: "#E8B7FF",
                  fontSize: "13px",
                  fontWeight: "bold",
                }}
              >
                수정하기
              </button>
이재연's avatar
이재연 committed
102
            </div>
이재연's avatar
이재연 committed
103
104
            <div class="col-6">
              <div class="input-group mx-2 my-3">
105
106
107
108
109
110
111
                <div>
                  <label
                    class="form-label"
                    style={{ fontSize: "13px", fontWeight: "bold" }}
                  >
                     비밀번호
                  </label>
우지원's avatar
우지원 committed
112
                  <input type="text" className="form-control" />
113
114
115
                </div>
                <div>
                  <label
우지원's avatar
우지원 committed
116
                    className="form-label"
117
118
119
120
                    style={{ fontSize: "13px", fontWeight: "bold" }}
                  >
                     비밀번호 확인
                  </label>
우지원's avatar
우지원 committed
121
                  <input type="text" className="form-control" />
이재연's avatar
이재연 committed
122
123
                </div>
              </div>
124
            </div>
우지원's avatar
우지원 committed
125
126
            <div className="col-6">
              <div className="input-group my-3 ">
127
128
                <div>
                  <label
우지원's avatar
우지원 committed
129
                    className="form-label"
130
131
132
133
                    style={{ fontSize: "13px", fontWeight: "bold" }}
                  >
                     전화번호
                  </label>
우지원's avatar
우지원 committed
134
                  <input type="text" className="form-control" />
135
136
137
                </div>
                <div>
                  <label
우지원's avatar
우지원 committed
138
                    className="form-label"
139
140
141
142
                    style={{ fontSize: "13px", fontWeight: "bold" }}
                  >
                     전화번호 확인
                  </label>
우지원's avatar
우지원 committed
143
                  <input type="text" className="form-control" />
이재연's avatar
이재연 committed
144
145
146
147
                </div>
              </div>
            </div>
          </div>
Kim, Chaerin's avatar
Kim, Chaerin committed
148
        </div>
이재연's avatar
이재연 committed
149
      </div>
150
    </div>
이재연's avatar
이재연 committed
151
  );
Kim, Chaerin's avatar
Kim, Chaerin committed
152
153
154
};

export default InfoUpdate;