- added edit btn to full name - Linked the add child to the userregisteration details - Added Hindi Lingual file to profile view - Made the custom alert for deactivate account - updated the username check logic - Added logout api and handled the user logout - Handled the logout when device change globally
29 lines
806 B
Swift
29 lines
806 B
Swift
//
|
||
// AuthenticationStringConstant.swift
|
||
// WOKA
|
||
//
|
||
// Created by MacBook Pro on 29/04/24.
|
||
//
|
||
|
||
import Foundation
|
||
|
||
extension K{
|
||
|
||
struct AuthenticationStringConstant{
|
||
static let safeBelow = "Let’s be Safe!"
|
||
static let safeAbove = "Let’s Start Here"
|
||
|
||
static let emailAbove = "CAN WE HAVE YOUR EMAIL?"
|
||
static let emailBelow = "CAN WE HAVE YOUR PARENT’S EMAIL?"
|
||
|
||
// PlaceHolderText
|
||
static let enterEmail = "Enter your email"
|
||
static let enterParentsEmail = "Enter your parent's email"
|
||
static let selectUsername = "Enter a username"
|
||
static let enterName = "Enter your name"
|
||
static let enterChildName = "Enter your child name"
|
||
static let enterPassword = "Enter your password"
|
||
|
||
}
|
||
}
|