Skip to main content

Task 32: HTML FORMS

Affirmations for Confidence and Growth​

  • I am capable of learning anything I set my mind to.

  • I choose progress over perfection every day.

  • I have everything I need to succeed within me.

  • I am focused, consistent, and committed to my goals.

  • I believe in my ability to create positive change.

  • I welcome challenges as opportunities to grow.

  • I trust the process and take bold steps forward.

  • I am proud of how far I’ve come and excited for what’s next.

  • I deserve success, joy, and abundance in all areas of my life.

  • I am becoming the best version of myself every single day.

HTML FORMS​

<html>
<head>
<title>Registration Page</title>
</head>
<body>
<form action="http://www.enochgeorge.com/register/" method="post">
<label for="lastname">Lastname:</label>
<input type="text" name="lastname" id="lastname" required="required" /><br />
<label for="firstname">Firstname:</label>
<input type="text" name="firstname" id="firstname" required="required" /><br />
<label for="email">Email:</label>
<input type="text" name="email" id="email" required="required" /><br />
<label for="username">Username:</label>
<input type="text" name="username" id="username" required="required" /><br />
<label for="password">Password:</label>
<input type="password" name="password" id="password" required="required" />
<input type="submit" value="Register" />
</form>
</body>
</html>