InfoUpdate.js 5.63 KB
Newer Older
이재연's avatar
이재연 committed
1
import { Link } from "react-router-dom";
이재연's avatar
이재연 committed
2
import React, { useState } from "react";
이재연's avatar
이재연 committed
3

Kim, Chaerin's avatar
Kim, Chaerin committed
4
const InfoUpdate = () => {
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  // const INIT_ACCOUNT={
  //   name:"",
  // }

  // const [account, setAccount] = useState(INIT_ACCOUNT)

  // const handleChange = (e)=>{
  //   const {name, value, files}=e.target
  //   if(files){
  //     setAccount({...account,[name]:files})
  //     console.log('aaaaaaa')
  //   } else{
  //     setAccount({...account, [name]:value})
  //   }
  // }
이재연's avatar
이재연 committed
20

21
  const id = 1;
이재연's avatar
이재연 committed
22
  const number = 1234;
이재연's avatar
이재연 committed
23
  return (
우지원's avatar
우지원 committed
24
25
    <div className="container" style={{ background: "#FCF4FF" }}>
      <div className="row">
Kim, Chaerin's avatar
Kim, Chaerin committed
26
        <div>
이재연's avatar
이재연 committed
27
          <label
우지원's avatar
우지원 committed
28
            className="form-label mx-2 my-4"
이재연's avatar
이재연 committed
29
30
31
32
            style={{ fontSize: "18px", fontWeight: "bold" }}
          >
            프로필 정보
          </label>
이재연's avatar
이재연 committed
33
          <Link to={`/profile/${id}`}>
34
35
            <button
              type="button"
우지원's avatar
우지원 committed
36
              className="btn btn-outline-white "
37
38
39
40
41
42
              style={{
                background: "#E8B7FF",
                fontSize: "13px",
                fontWeight: "bold",
              }}
            >
이재연's avatar
이재연 committed
43
              돌아가기
44
            </button>
이재연's avatar
이재연 committed
45
          </Link>
이재연's avatar
이재연 committed
46
        </div>
47
      </div>
이재연's avatar
이재연 committed
48

우지원's avatar
우지원 committed
49
      <div className="col">
Kim, Chaerin's avatar
Kim, Chaerin committed
50
        <div>
우지원's avatar
우지원 committed
51
          <div className="row">
이재연's avatar
이재연 committed
52
53
54
55
            <div
              className="d-flex justify-content-center"
              style={{ position: "relative" }}
            >
56
              <img
Kim, Chaerin's avatar
Kim, Chaerin committed
57
                src="/cherry.jpg"
이재연's avatar
이재연 committed
58
                id="imgfile"
이재연's avatar
이재연 committed
59
                className="rounded-circle mt-2"
60
61
                style={{ height: "320px", width: "320px" }}
              />
이재연's avatar
이재연 committed
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
              <div
                className="d-flex justify-content-end"
                style={{ position: "absolute", left: "295px", top: "30px" }}
              >
                <label for="inputfile">
                  <img
                    className="rounded-circle"
                    src="/infoimg.jpg"
                    // onChange={handleChange}
                    style={{
                      width: "50px",
                      height: "50px",
                      backgroundColor: "white",
                    }}
                  />
                </label>
                <input
                  type="file"
                  accept="image/*"
                  id="inputfile"
                  style={{ display: "none" }}
                />
              </div>
85
            </div>
이재연's avatar
이재연 committed
86

이재연's avatar
이재연 committed
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
            <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>
109
            </div>
이재연's avatar
이재연 committed
110

이재연's avatar
이재연 committed
111
            <div className="d-flex justify-content-center">
이재연's avatar
이재연 committed
112
113
              <label
                class="form-label me-3"
이재연's avatar
이재연 committed
114
115
116
117
118
                style={{
                  outline: "none",
                  fontSize: "13px",
                  fontWeight: "bold",
                }}
이재연's avatar
이재연 committed
119
120
121
122
              >
                현재 비밀번호
              </label>
              <input
Kim, Chaerin's avatar
Kim, Chaerin committed
123
                type="password"
이재연's avatar
이재연 committed
124
125
126
127
                class="form-control"
                style={{ height: "38px", width: "200px" }}
              />
              <button
이재연's avatar
이재연 committed
128
129
130
131
132
133
134
135
136
137
                type="button"
                className="btn btn-outline-white ms-2"
                style={{
                  background: "#E8B7FF",
                  fontSize: "13px",
                  fontWeight: "bold",
                }}
              >
                수정하기
              </button>
이재연's avatar
이재연 committed
138
            </div>
이재연's avatar
이재연 committed
139
140
            <div class="col-6">
              <div class="input-group mx-2 my-3">
141
142
143
144
145
146
147
                <div>
                  <label
                    class="form-label"
                    style={{ fontSize: "13px", fontWeight: "bold" }}
                  >
                     비밀번호
                  </label>
우지원's avatar
우지원 committed
148
                  <input type="text" className="form-control" />
149
150
151
                </div>
                <div>
                  <label
우지원's avatar
우지원 committed
152
                    className="form-label"
153
154
155
156
                    style={{ fontSize: "13px", fontWeight: "bold" }}
                  >
                     비밀번호 확인
                  </label>
우지원's avatar
우지원 committed
157
                  <input type="text" className="form-control" />
이재연's avatar
이재연 committed
158
159
                </div>
              </div>
160
            </div>
우지원's avatar
우지원 committed
161
162
            <div className="col-6">
              <div className="input-group my-3 ">
163
164
                <div>
                  <label
우지원's avatar
우지원 committed
165
                    className="form-label"
166
167
168
169
                    style={{ fontSize: "13px", fontWeight: "bold" }}
                  >
                     전화번호
                  </label>
우지원's avatar
우지원 committed
170
                  <input type="text" className="form-control" />
171
172
173
                </div>
                <div>
                  <label
우지원's avatar
우지원 committed
174
                    className="form-label"
175
176
177
178
                    style={{ fontSize: "13px", fontWeight: "bold" }}
                  >
                     전화번호 확인
                  </label>
우지원's avatar
우지원 committed
179
                  <input type="text" className="form-control" />
이재연's avatar
이재연 committed
180
181
182
183
                </div>
              </div>
            </div>
          </div>
Kim, Chaerin's avatar
Kim, Chaerin committed
184
        </div>
이재연's avatar
이재연 committed
185
      </div>
186
    </div>
이재연's avatar
이재연 committed
187
  );
Kim, Chaerin's avatar
Kim, Chaerin committed
188
189
190
};

export default InfoUpdate;