mirror of
https://github.com/ClaytonWWilson/Listify.git
synced 2026-03-10 10:45:04 +00:00
Removed extra spaces
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user