diff --git a/src/screen/FindpwScreen/Button.js b/src/screen/FindpwScreen/Button.js
new file mode 100644
index 0000000..85b4e27
--- /dev/null
+++ b/src/screen/FindpwScreen/Button.js
@@ -0,0 +1,36 @@
+import React from 'react';
+import {Pressable, StyleSheet, Text} from 'react-native';
+
+import Colors from '../../constants/Color';
+
+const Button = ({text, style, navigation}) => {
+ const screen = {
+ 비밀번호 찾기: 'Verifycode',
+ }[text];
+
+ const handlePress = () => {
+ navigation.navigate(screen);
+ };
+
+ return (
+
+ {text}
+
+ );
+};
+
+const styles = StyleSheet.create({
+ container: {
+ alignItems: 'center',
+ alignSelf: 'stretch',
+ backgroundColor: Colors.GREY_SECONDARY,
+ height: 32,
+ justifyContent: 'center',
+ },
+ text: {
+ color: Colors.BLACK,
+ fontSize: 15,
+ },
+});
+
+export default Button;
diff --git a/src/screen/FindpwScreen/index.js b/src/screen/FindpwScreen/index.js
new file mode 100644
index 0000000..c15ef9d
--- /dev/null
+++ b/src/screen/FindpwScreen/index.js
@@ -0,0 +1,81 @@
+import React from 'react';
+import {StyleSheet, Text, View, TextInput} from 'react-native';
+import {SafeAreaView} from 'react-native-safe-area-context';
+
+import Colors from '../../constants/Color';
+import Button from './Button';
+
+const FindpwScreen = ({navigation}) => {
+ return (
+
+ 배달N
+ 비밀번호 찾기
+
+
+ 이름
+
+
+
+ 전화번호
+
+
+
+ 이메일
+
+
+
+
+
+ );
+};
+
+const styles = StyleSheet.create({
+ container: {
+ height: 150,
+ justifyContent: 'space-between',
+ position: 'absolute',
+ top: '30%',
+ },
+ screen: {
+ alignItems: 'center',
+ flex: 1,
+ justifyContent: 'flex-end',
+ paddingHorizontal: 17,
+ paddingVertical: 50,
+ position: 'relative',
+ },
+ logo: {
+ alignSelf: 'center',
+ fontSize: 50,
+ fontWeight: '600',
+ position: 'absolute',
+ top: '5%',
+ },
+ title: {
+ alignSelf: 'stretch',
+ fontSize: 20,
+ fontWeight: '600',
+ position: 'absolute',
+ top: '20%',
+ left: '5%',
+ },
+ inputContainer: {
+ alignItems: 'center',
+ display: 'flex',
+ flexDirection: 'row',
+ justifyContent: 'space-between',
+ },
+ input: {
+ borderColor: Colors.BLACK,
+ borderWidth: 1,
+ width: '80%',
+ height: 32,
+ justifyContent: 'center',
+ },
+ inputTitle: {
+ color: Colors.BLACK,
+ fontSize: 15,
+ },
+});
+
+export default FindpwScreen;
diff --git a/src/screen/VerifycodeScreen/Button.js b/src/screen/VerifycodeScreen/Button.js
new file mode 100644
index 0000000..27a2c29
--- /dev/null
+++ b/src/screen/VerifycodeScreen/Button.js
@@ -0,0 +1,41 @@
+import React from 'react';
+import {Pressable, StyleSheet, Text} from 'react-native';
+
+import Colors from './Color';
+
+const Button = ({text, style, navigation}) => {
+ const screen = {
+ 재발송: 'Findpw',
+ }[text];
+
+ const handlePress = () => {
+ navigation.navigate(screen);
+ };
+
+ return (
+
+ {text}
+
+ );
+};
+
+const styles = StyleSheet.create({
+ container: {
+ alignItems: 'center',
+ alignSelf: 'stretch',
+ backgroundColor: Colors.GREY_SECONDARY,
+ height: 32,
+ justifyContent: 'center',
+ position : 'absolute',
+ top: '70%',
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ text: {
+ color: Colors.BLACK,
+ fontSize: 15,
+ },
+});
+
+export default Button;
\ No newline at end of file
diff --git a/src/screen/VerifycodeScreen/index.js b/src/screen/VerifycodeScreen/index.js
new file mode 100644
index 0000000..14b8f9a
--- /dev/null
+++ b/src/screen/VerifycodeScreen/index.js
@@ -0,0 +1,87 @@
+import React, {useRef} from 'react';
+import {StyleSheet, Text, View, TextInput} from 'react-native';
+import {SafeAreaView} from 'react-native-safe-area-context';
+
+import Colors from '../../constants/Color';
+import Button from './Button';
+
+const email = "12345@gmail.com";
+
+const VerifycodeScreen = ({navigation}) => {
+ return (
+
+ 배달N
+ 비밀번호 찾기
+
+
+ {email} 로
+ 인증번호가 발송되었습니다
+
+
+
+
+
+ 타이머
+
+ );
+};
+
+const styles = StyleSheet.create({
+ container: {
+ height: 150,
+ justifyContent: 'space-between',
+ position: 'absolute',
+ top: '30%',
+ },
+ screen: {
+ alignItems: 'center',
+ flex: 1,
+ justifyContent: 'flex-end',
+ paddingHorizontal: 17,
+ paddingVertical: 50,
+ position: 'relative',
+ },
+ logo: {
+ alignSelf: 'center',
+ fontSize: 50,
+ fontWeight: '600',
+ position: 'absolute',
+ top: '5%',
+ },
+ title: {
+ alignSelf: 'stretch',
+ fontSize: 20,
+ fontWeight: '600',
+ position: 'absolute',
+ top: '20%',
+ left: '5%',
+ },
+ email: {
+ alignSelf: 'center',
+ fontSize: 16,
+ fontWeight: '800',
+ },
+ send: {
+ alignSelf: 'center',
+ fontSize: 16,
+ fontWeight: '300',
+ },
+ inputContainer: {
+ alignItems: 'center',
+ display: 'flex',
+ flexDirection: 'row',
+ justifyContent: 'space-between',
+ },
+ input: {
+ borderColor: Colors.BLACK,
+ fontSize: 24,
+ width: '100%',
+ borderBottomWidth: 1,
+ height: 32,
+ justifyContent: 'center',
+ },
+
+});
+
+export default VerifycodeScreen;