Created
August 18, 2021 02:29
-
-
Save erenkulaksiz/a29424631bf7209202fd119658dd5354 to your computer and use it in GitHub Desktop.
Basic Form with HTML
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<head> | |
<head> | |
<title>Giriş Formu</title> | |
</head> | |
<body> | |
<form> | |
Kullanıcı Adı: <input type="text" name="username" id="username" placeholder="Kullanıcı Adı"></input> | |
<br /> | |
Şifre: <input type="password" name="password" id="password" placeholder="Şifre"/></input> | |
<br /> | |
<input type="submit" value="Giriş" /></input> | |
</form> | |
</body> | |
</head> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment