Skip to content

Commit

Permalink
title 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
rlaisqls committed Mar 9, 2024
1 parent 25b12d2 commit b30ae96
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 11 deletions.
2 changes: 1 addition & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>프로젝트 등록</title>
<title>Xquare</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
Expand Down
2 changes: 1 addition & 1 deletion src/signup/SignUp.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ export const SignUp = () => {
return (
<div className="my-[10px] flex flex-col items-center justify-center h-screen bg-gray-200">
<form className="p-6 flex flex-col gap-[15px] bg-white rounded w-[500px]" onSubmit={handleSubmit}>
<img className="my-0 mx-auto h-16" src="https://github.com/rlaisqls/TIL/assets/81006587/4492b702-5cb6-40af-821d-e264cd82549b"/>
<img alt="logo" className="my-0 mx-auto h-16" src="https://github.com/rlaisqls/TIL/assets/81006587/4492b702-5cb6-40af-821d-e264cd82549b"/>
<p>안녕하세요. Xquare 회원가입 페이지입니다 :)<br/>자신의 정보를 입력하여 회원가입 해주세요!</p>
<InputField
label="이름"
Expand Down
10 changes: 1 addition & 9 deletions src/signup/SignUpDone.jsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,6 @@
import React, { useEffect, useState } from 'react';
import React from 'react';

export const SignUpDone = () => {

const [projectName, setProjectName] = useState('');

useEffect(() => {
const currentURL = new URL(window.location.href);
const searchParams = currentURL.searchParams;
setProjectName(searchParams.get('projectname'))
}, []);

return (
<div className="flex flex-col items-center justify-center h-screen bg-gray-200">
Expand Down

0 comments on commit b30ae96

Please sign in to comment.