Skip to content

Commit 037b7bb

Browse files
committed
Importing public dir
1 parent 4d64524 commit 037b7bb

File tree

4 files changed

+32
-0
lines changed

4 files changed

+32
-0
lines changed

public/login-form.php

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
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>

public/login.php

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
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?

public/register-form.php

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
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>

public/register.php

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
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

0 commit comments

Comments
 (0)