mirror of
https://github.com/ClaytonWWilson/Listify.git
synced 2025-12-13 09:48:47 +00:00
Removed extra spaces
This commit is contained in:
parent
cbc9db73cd
commit
8cc83d9259
@ -13,8 +13,7 @@ import com.example.listify.MainActivity
|
||||
import com.example.listify.R
|
||||
|
||||
class ForgotPasswordPage : AppCompatActivity() {
|
||||
private var button1 //Code page button
|
||||
: Button? = null
|
||||
private var button1: Button? = null
|
||||
var email: String? = null
|
||||
var newPassword: String? = null
|
||||
var confirmNewPassword: String? = null
|
||||
|
||||
@ -12,12 +12,9 @@ import com.example.listify.MainActivity
|
||||
import com.example.listify.R
|
||||
|
||||
class LoginPage : AppCompatActivity() {
|
||||
private var button1 //Sign up page button
|
||||
: Button? = null
|
||||
private var button2 //Forgot password button
|
||||
: Button? = null
|
||||
private var button3 //Log in button
|
||||
: Button? = null
|
||||
private var button1: Button? = null
|
||||
private var button2: Button? = null
|
||||
private var button3: Button? = null
|
||||
|
||||
override fun onBackPressed() {
|
||||
val prev = intent.getStringExtra("prev")
|
||||
|
||||
@ -13,10 +13,8 @@ import com.example.listify.MainActivity
|
||||
import com.example.listify.R
|
||||
|
||||
class SignupPage : AppCompatActivity() {
|
||||
private var button1 //Log in page button
|
||||
: Button? = null
|
||||
private var button2 //Sign up button
|
||||
: Button? = null
|
||||
private var button1: Button? = null
|
||||
private var button2: Button? = null
|
||||
var email: String? = null
|
||||
var password: String? = null
|
||||
var confirmPassword: String? = null
|
||||
|
||||
Loading…
Reference in New Issue
Block a user