Skip to content

Instantly share code, notes, and snippets.

@erenkulaksiz
Created August 18, 2021 02:29
Show Gist options
  • Save erenkulaksiz/a29424631bf7209202fd119658dd5354 to your computer and use it in GitHub Desktop.
Save erenkulaksiz/a29424631bf7209202fd119658dd5354 to your computer and use it in GitHub Desktop.
Basic Form with HTML
<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