0% found this document useful (0 votes)
29 views3 pages

Log

This document contains HTML code for a registration form with fields for a username, email, password, and password check. The form includes validation icons next to each field and space for error messages. It has a submit button at the bottom to send the form data.

Uploaded by

Souha Bhk
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
29 views3 pages

Log

This document contains HTML code for a registration form with fields for a username, email, password, and password check. The form includes validation icons next to each field and space for error messages. It has a submit button at the bottom to send the form data.

Uploaded by

Souha Bhk
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

<!

DOCTYPE html>

<html>

<HEAD>

<meta charset="utf-8">

<link rel="stylesheet" href="main.css"/>

<script src="https://kit.fontawesome.com/6642841f4c.js" crossorigin="anonymous"></script>

</HEAD>

<body>

<div class="container">

<div class="header">

<h2>create account</h2>

<form class="form" id="form">

<div class="form-controll success">

<label> username </label>

<input type="text" placeholder="soumaya94"id="username">

<i class="fas fa-check-circle"></i>

<i class="fas fa-exclamation-circle"></i>

<small>Error messgae</small>

</div>
<div class="form-controll error">

<label> email </label></br>

<input type="text" placeholder="[email protected]"id="email">

<i class="fas fa-check-circle"></i>

<i class="fas fa-exclamation-circle"></i>

<small>Error messgae</small>

</div>

<div class="form-controll">

<label> Password </label>

<input type="password" placeholder="password"id="password">

<i class="fas fa-check-circle"></i>

<i class="fas fa-exclamation-circle"></i>

<small>Error messgae</small>

</div>

<div class="form-controll">

<label> Password check </label>

<input type="text" placeholder="password check"id="passwoed_check">

<i class="fas fa-check-circle"></i>

<i class="fas fa-exclamation-circle"></i>

<small>Error messgae</small>
</div>

<button>Submit

</button>

</form>

</div></div>

You might also like