본문 바로가기
TIL(Today I Learned)

TLI 78일 (23. 8. 30. 수) 최종프 로그인, 회원가입 프론트 적용

by seed0335 2023. 8. 30.

로그인 회원가입에 프론트를 적용하고 있습니다. 

 

    <div class="form-container sign-up-container">
        <form action="#">
            <h1>회원가입</h1>
            <div class="social-container">
                <a onclick="redirectToGoogleLogin()" class="social"><i class="fab fa-google-plus-g"></i></a>
            </div>
            <span>또는 </span>
            <input type="text" placeholder="Name"/>
            <input type="email" placeholder="Email"/>
            <input type="password" placeholder="Password"/>
            <button>회원가입</button>
        </form>
    </div>

댓글