Creat login Html website in one minute

Durum
Üzgünüz bu konu cevaplar için kapatılmıştır...
Üye
Katılım
15 Mar 2018
Mesajlar
5
Tepki puanı
1
Ödüller
4
Yaş
126
8 HİZMET YILI
go to
Bağlantıları görmek için lütfen Giriş Yap
and tell ai like " can you create login html webpage for my shop ?' boom easy
 
Seçkin Üye
Katılım
6 Nis 2018
Mesajlar
593
Tepki puanı
66
Ödüller
7
8 HİZMET YILI
Login page is easy to do why do you need an ai for it lol
 
Onaylı Üye
Katılım
23 Şub 2019
Mesajlar
50
Tepki puanı
3
Ödüller
4
Yaş
41
7 HİZMET YILI
PHP:
<!DOCTYPE html>
<html>
  <head>
    <title>Login Page</title>
    <style>
      /* Add some styling to the page */
      body {
        background-color: #f2f2f2;
      }
      h1 {
        text-align: center;
      }
      form {
        margin: auto;
        width: 50%;
        background-color: #fff;
        padding: 20px;
        border-radius: 5px;
      }
      input[type=text], input[type=password] {
        width: 100%;
        padding: 12px 20px;
        margin: 8px 0;
        display: inline-block;
        border: 1px solid #ccc;
        border-radius: 4px;
        box-sizing: border-box;
      }
      button {
        background-color: #4CAF50;
        color: white;
        padding: 14px 20px;
        margin: 8px 0;
        border: none;
        border-radius: 4px;
        cursor: pointer;
      }
      button:hover {
        background-color: #45a049;
      }
    </style>
  </head>
  <body>
    <h1>Login Page</h1>
    <form>
      <label for="username"><b>Username</b></label>
      <input type="text" placeholder="Enter Username" name="username" required>
      <label for="password"><b>Password</b></label>
      <input type="password" placeholder="Enter Password" name="password" required>
      <button type="submit">Login</button>
    </form>
  </body>
</html>
 
Onaylı Üye
Katılım
31 Ocak 2020
Mesajlar
52
Tepki puanı
2
Ödüller
4
Yaş
26
6 HİZMET YILI
You can try chat got its one of the most famous platform right now all you need to do is just write a promt on it and it will give you the complete code for you require login page
 
Durum
Üzgünüz bu konu cevaplar için kapatılmıştır...
Üst