28 lines
746 B
Swift
28 lines
746 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 enterPassword = "Enter your password"
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|