File tree 4 files changed +32
-0
lines changed
4 files changed +32
-0
lines changed Original file line number Diff line number Diff line change
1
+ <form action =" login.php" method =" post" >
2
+ <input type = " email" name = " emailAddress" placeholder = " Email Address" required = " required" />
3
+ <input type = " password" name = " password" placeholder = " Password" required = " required" />
4
+ <input type = " submit" />
5
+ </form >
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ // 1. fetch user by email
4
+ // 2. compare user password hash against given password
5
+ // 3. is the user banned? (optional)
6
+ // 4. log login (optional)
7
+ // 5. store user identifier into the session
8
+
9
+ // discuss: should the fetching by password happen at database level?
10
+ // Should it happen inside the entity?
11
+ // Or in a service?
Original file line number Diff line number Diff line change
1
+ <form action =" register.php" method =" post" >
2
+ <input type = " email" name = " emailAddress" placeholder = " Email Address" required = " required" />
3
+ <input type = " password" name = " password" placeholder = " Password" required = " required" />
4
+ <input type = " submit" />
5
+ </form >
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ // registering a new user:
4
+
5
+ // 1. check if a user with the same email address exists
6
+ // 2. if not, create a user
7
+ // 3. hash the password
8
+ // 4. send the email to confirm activation (we will just display it)
9
+ // 5. save the user
10
+
11
+ // Tip: discuss - email or saving? Chicken-egg problem
You can’t perform that action at this time.
0 commit comments