Commit 127efdac authored by 이재연's avatar 이재연
Browse files

hh

parent 75e294f4
node_modules
\ No newline at end of file
...@@ -7,31 +7,81 @@ function Signup() { ...@@ -7,31 +7,81 @@ function Signup() {
return ( return (
<div class="form-container"> <Container className="d-flex justify-content-center">
<Nav1 /> <Nav1 />
<Nav2 /> <Nav2 />
<form id="form" class="form"> <div className="form-control">
<h1>회원가입</h1> <Form.Label className="d-flex justify-content-center">Sign Up</Form.Label>
<div class="form-control"> <Form>
<label for="id">아이디</label>
<input type="text" id="id" placeholder="아이디를 입력하세요"></input>
<label for="name">본명</label> <Form.Group controlId="formBasicId">
<input type="text" id="name" placeholder="본명을 입력하세요"></input> <Form.Row>
<Form.Label for="id">User Name</Form.Label>
</Form.Row>
<Col>
<Form.Control type="text" id="id" size="sm" placeholder="UserName" className="mx-sm-3"></Form.Control>
</Col>
</Form.Group>
<label for="password">비밀번호</label> <Form.Group controlId="formBasicName">
<input type="password" id="password" placeholder="비밀번호를 입력하세요"></input> <Form.Row>
<Form.Label for="name">Real Name</Form.Label>
</Form.Row>
<Col>
<Form.Control type="text" id="name" size="sm" placeholder="Enter your Real Name" className="mx-sm-3"></Form.Control>
</Col>
</Form.Group>
<label for="password2">비밀번호 확인</label> <Form.Group controlId="formBasicNumber">
<input type="password" id="password2" placeholder="비밀번호를 한번 더 입력하세요"></input> <Form.Row>
<Form.Label for="number">Resident registration number</Form.Label>
</Form.Row>
<Col>
<Form.Control type="text" id="number1" size="sm" maxlength="6" className="mx-sm-3"></Form.Control>
</Col>
</Form.Group>
<label for="tel">휴대폰 번호</label> <Form.Group controlId="formBasicPassword">
<input type="text" id="tel" placeholder="휴대폰 번호를 입력하세요"></input> <Form.Row>
<Form.Label for="password">Password</Form.Label>
</Form.Row>
<Col>
<Form.Control type="password" id="password" size="sm" aria-describedby="passwordHelpBlock" className="mx-sm-3"></Form.Control>
<Form.Text id="password" muted>Must be 8-20 characters long.</Form.Text>
</Col>
</Form.Group>
<label for="add">주소</label> <Form.Group controlId="formBasicPassword2">
</div> <Form.Row>
</form> <Form.Label for="password2">Confirm Password</Form.Label>
</Form.Row>
<Col>
<Form.Control type="password" id="password2" size="sm" placeholder="Confirm Password" className="mx-sm-3"></Form.Control>
</Col>
</Form.Group>
<Form.Group controlId="formBasicTel">
<Form.Row>
<Form.Label for="tel">Phone Number</Form.Label>
</Form.Row>
<Col>
<Form.Control type="text" id="tel" size="sm" placeholder="Enter your Phone Number" className="mx-sm-3"></Form.Control>
</Col>
</Form.Group>
<Form.Group controlId="formBasicAdd">
<Form.Row>
<Form.Label>address</Form.Label>
</Form.Row>
<Col>
<Form.Control type="text" id="add" size="sm" placeholder="Enter your Address" className="mx-sm-3"></Form.Control>
</Col>
</Form.Group>
</Form>
<Button variant="outline-dark" type="submit" block>Sign Up</Button>
</div> </div>
</Container>
) )
} }
......
node_modules
\ No newline at end of file
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment