2024-05-02 13:20:40 +05:30
|
|
|
|
//
|
|
|
|
|
|
// 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"
|
2024-06-06 20:19:22 +05:30
|
|
|
|
static let enterChildName = "Enter your child name"
|
2024-05-02 13:20:40 +05:30
|
|
|
|
static let enterPassword = "Enter your password"
|
|
|
|
|
|
|
2024-08-20 19:50:11 +05:30
|
|
|
|
|
|
|
|
|
|
static let forgotUsername = "Forgot Username"
|
|
|
|
|
|
|
2024-05-02 13:20:40 +05:30
|
|
|
|
}
|
|
|
|
|
|
}
|