티스토리 뷰
HTML
sign-up.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Signup Page</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<form id="signupForm" style="margin-left: 20px;">
<h2>Signup</h2>
<input type="text" id="signupUsername" placeholder="Username" required>
<input type="password" id="signupPassword" placeholder="Password" required>
<button type="button" onclick="signup()">Signup</button>
</form>
<script src="userAuth.js"></script>
</body>
sign-in.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login Page</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<form id="loginForm">
<h2>Login</h2>
<input type="text" id="loginUsername" placeholder="Username" required>
<input type="password" id="loginPassword" placeholder="Password" required>
<button type="button" onclick="login()">Login</button>
<script src="userAuth.js"></script>
</form>
</body>
CSS
style.css
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f2f2f2;
margin: 0;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
form {
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
width: 300px;
text-align: center;
}
input {
width: calc(100% - 20px);
padding: 10px;
margin: 8px 0;
box-sizing: border-box;
border: 1px solid #ddd;
border-radius: 4px;
}
button {
width: calc(100% - 20px);
padding: 10px;
background-color: #007BFF;
color: #fff;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #0056b3;
}
h2 {
margin-bottom: 20px;
color: #007BFF;
}
JavaScript
userAuth.js
// 페이지 로드 시 데이터 가져오기
var storedUserData = localStorage.getItem('userData');
var userData = storedUserData ? JSON.parse(storedUserData) : {};
function login() {
var username = document.getElementById("loginUsername").value;
var password = document.getElementById("loginPassword").value;
// 로그인 처리 로직
if (userData[username] && userData[username].password === password) {
// 로그인 성공 시 alert 창 표시
alert("Login successful");
} else {
// 로그인 실패 시 alert 창 표시
alert("Invalid username or password");
}
}
function signup() {
var username = document.getElementById("signupUsername").value;
var password = document.getElementById("signupPassword").value;
// 이미 존재하는 사용자인지 확인
if (userData[username]) {
alert("Username already exists");
} else {
// 새로운 사용자를 저장
userData[username] = { password: password };
console.log("Signup successful");
// 회원가입 성공 시 로그인 페이지로 리디렉션
window.location.href = 'sign-in.html';
// 회원가입 시 사용자 데이터를 로컬 스토리지에 저장
localStorage.setItem('userData', JSON.stringify(userData));
}
}
function showUserData() {
console.log(userData.toString());
}
'Web' 카테고리의 다른 글
인텔리제이 유용한 단축키 모음 (0) | 2024.02.29 |
---|---|
HTML 기본 문법 (0) | 2024.02.04 |
[간단한 웹 프로젝트/5~7일차] (0) | 2023.08.16 |
[간단한 웹 프로젝트/4,5일차] UI 구현 (0) | 2023.05.26 |
[간단한 웹 프로젝트/2,3일차] 구조 설계, UI 구현 (1) | 2023.05.24 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 개발
- 스파크
- 백준9375번
- 자바 1004번
- 알고리즘
- 스프링부트
- 스프링 강의
- 백준 1004
- 코딩
- 컴공
- 안드로이드
- 코틀린
- bcrypaswordencoder
- 백준 2108
- 생활코딩
- 리트코드 1768
- BFS
- 프로그래밍
- 동덕여대
- RDD
- 자바
- 컴과
- 컴퓨터학과
- 동덕여대 컴퓨터학과
- 백준
- 웹
- 리트코드 1768 해석
- 자바 9375
- 그리디 알고리즘
- 아이엘츠
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함