removing old sign up and sign in pages
This commit is contained in:
@@ -1,31 +0,0 @@
|
||||
import { SignIn } from '@clerk/clerk-react'
|
||||
import { dark } from '@clerk/themes'
|
||||
import React from 'react'
|
||||
import { StyleSheet, View } from 'react-native'
|
||||
|
||||
export default function SignInScreen() {
|
||||
return (
|
||||
<View style={styles.container}>
|
||||
<SignIn
|
||||
appearance={{
|
||||
theme: dark,
|
||||
variables: {
|
||||
colorPrimary: '#747b83ff',
|
||||
colorBackground: '#25292e',
|
||||
colorInput: '#383e46ff'
|
||||
}
|
||||
}}
|
||||
signUpUrl='/sign-up'
|
||||
/>
|
||||
</View>
|
||||
)
|
||||
}
|
||||
|
||||
const styles = StyleSheet.create({
|
||||
container: {
|
||||
flex: 1,
|
||||
backgroundColor: '#25292e',
|
||||
padding: 5,
|
||||
alignItems: 'center'
|
||||
}
|
||||
})
|
||||
@@ -1,31 +0,0 @@
|
||||
import { SignUp } from '@clerk/clerk-expo/web'
|
||||
import { dark } from '@clerk/themes'
|
||||
import * as React from 'react'
|
||||
import { StyleSheet, View } from 'react-native'
|
||||
|
||||
export default function SignUpScreen() {
|
||||
return (
|
||||
<View style={styles.container}>
|
||||
<SignUp
|
||||
appearance={{
|
||||
theme: dark,
|
||||
variables: {
|
||||
colorPrimary: '#747b83ff',
|
||||
colorBackground: '#25292e',
|
||||
colorInput: '#383e46ff'
|
||||
}
|
||||
}}
|
||||
signInUrl='/sign-in'
|
||||
/>
|
||||
</View>
|
||||
)
|
||||
}
|
||||
|
||||
const styles = StyleSheet.create({
|
||||
container: {
|
||||
flex: 1,
|
||||
backgroundColor: '#25292e',
|
||||
padding: 5,
|
||||
alignItems: 'center'
|
||||
}
|
||||
})
|
||||
Reference in New Issue
Block a user