-
Notifications
You must be signed in to change notification settings - Fork 0
/
NewAccountView.swift
71 lines (58 loc) · 2.13 KB
/
NewAccountView.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
//
// NewAccountView.swift
// LoginPage
//
// Created by user242205 on 7/22/23.
//
import SwiftUI
struct NewAccountView: View {
@Environment(\.presentationMode) var presentationMode
@State private var username: String = ""
@State private var password: String = ""
var body: some View {
ZStack{
Image("sky").resizable().edgesIgnoringSafeArea(.all)
VStack{
Text("New Account")
.font(.largeTitle)
Spacer()
HStack{
Image(systemName: "username")
.foregroundColor(.gray)
TextField("Username", text:$username)
.foregroundColor(.gray)
.font(.title)
.fontWeight(.bold)
if(username.count != 0){
Image(systemName: username.isValidUsername() ? "checkmark" : "xmark")
.frame(width:30)
.fontWeight(.bold)
.foregroundColor(username.isValidUsername() ? .green : .red)
}
}.padding()
.overlay(
RoundedRectangle(cornerRadius: 10)
.stroke(lineWidth: 2)
.foregroundColor(.black)
).padding()
HStack{
Image(systemName: "lock")
.foregroundColor(.gray)
TextField("Password", text:$password)
.foregroundColor(.gray)
.font(.title)
.fontWeight(.bold)
}.padding()
.overlay(RoundedRectangle(cornerRadius: 10)
.stroke(lineWidth: 2)
.foregroundColor(.black)
).padding()
}
}
}
}
struct NewAccountView_Previews: PreviewProvider {
static var previews: some View {
NewAccountView()
}
}