HTML ile yapılan siteye HTML ile kodlanmış login ekranı nasıl eklenir?

erhannyldz1

Decapat
Katılım
8 Aralık 2022
Mesajlar
76
Çözümler
1
Daha fazla  
Sistem Özellikleri
PC: GTX 1660 Tİ 6 GB / AMD RYZEN 5 5500 3.60 GHZ/ 16 GB RAM / MSİ A520M A PRO / 512 GB SSD / WİNDOWS 11
Cinsiyet
Erkek
Meslek
Öğrenci
Merhaba HTML ile bir web sitesi yaptım ve bu siteye bir kayıt ol butonu ekledim ve ayrı olarak login ekranı yaptım. Bu siteye login ekranını nasıl ekleyebilirim?
Kayıt ol tuşuna basınca yaptığım login ekranı gelecek bunu nasıl ayarlayabilirim? Yardımcı olursanız sevinirim, teşekkürler.
 

Dosya Ekleri

  • site.png
    site.png
    393,7 KB · Görüntüleme: 211
  • login.png
    login.png
    444,6 KB · Görüntüleme: 350
HTML:
<a href="login.html">Git</a>

Böyle küçük bir detayı bile bilmiyorsanız o siteyi sizin yaptığınıza kimse inanmaz :)
 
HTML:
<a href="login.html">Git</a>

Böyle küçük bir detayı bile bilmiyorsanız o siteyi sizin yaptığınıza kimse inanmaz :)

Ben yaptım derken zaten oturup tek tek ben kodlamadım :)
YouTube'da falan tek tek yazıp yapıyorlardı bende denemek istedim.
 
login için bir üyelik sistemine sahip olmanız gerekir :
1 - bir veri tabanı
2 - php, asp gibi bir dil ile yazılmış üye girişi ve kayıt sayfasına ihtiyacınız var.
 
Merhaba HTML ile bir web sitesi yaptım ve bu siteye bir kayıt ol butonu ekledim ve ayrı olarak login ekranı yaptım. Bu siteye login ekranını nasıl ekleyebilirim?
Kayıt ol tuşuna basınca yaptığım login ekranı gelecek bunu nasıl ayarlayabilirim? Yardımcı olursanız sevinirim, teşekkürler.
Bu kodu kullanarak web site giriş sayfası oluşturabilirsin:
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Form Uyarı</title>

<style>
* {
box-sizing: border-box;
}

/* Style the body */
body {
font-family: Arial;
margin: 0;
}

/* Header/logo Title */
.header {
padding: 60px;
text-align: center;
background: #0ec09c;
color: rgb(255, 255, 255);
}

/* Style the top navigation bar */
.navbar {
display: flex;
background-color: #373c3b;
}

/* Style the navigation bar links */
.navbar a {
color: white;
padding: 14px 20px;
text-decoration: none;
text-align: center;
}

/* Change color on hover */
.navbar a:hover {
background-color: #ddd;
color: rgb(69, 73, 73);
}

/* Column container */
.row {
display: flex;
flex-wrap: wrap;
}

/* Create two unequal columns that sits next to each other */
/* Sidebar/left column */
.side {
flex: 30%;
background-color: #f1f1f1;
padding: 20px;
}

/* Main column */
.main {
flex: 70%;
background-color: white;
padding: 20px;
}

/* Fake image, just for this example */
.fakeimg {
background-color: #aaa;
width: 100%;
padding: 20px;
}

/* Footer */
.footer {
padding: 20px;
text-align: center;
background: #ddd;
}

/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
.row, .navbar {
flex-direction: column;
}
}
</style>
</head>
<body>

<!-- Note -->
<div style="background:rgb(49, 50, 50);padding:5px">
</div>

<!-- Header -->
<div class="header">
<h1></h1>
<b>Car trading site</b>
</div>

<!-- Navigation Bar -->
<div class="navbar">
<a href="twolesson.html">Hakkında</a>
<a href="fourlesson.html">Deneme</a>
<a href="#">Link</a>
<a href="#">Link</a>
</div>
<style>
.button {
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 5px;
}

.button1 {background-color: #0ec09c;} /* Green */
.button2 {background-color: #0ec09c;} /* Blue */
</style>
<style>
.bold {
font-weight: bold;
}
</style>
</head>
<form>

<h4>Login Information</h4>
<p>
<b>Username:</b><br />
<input type="text" size="50" name="username" placeholder="Username" required>
</p>
<p>
<b>E-mail:</b><br />
<input type="email" size="50" name="eposta" placeholder="E-mail" required>
</p>

<p>
<b>Pasword:</b><br />
<input type="password" size="50" name="parola" placeholder="pasword" required>
</p>
<input type="submit" action="twolesson" class="button button2" value="log in">
</a>
</form>
<a class="button button2" href="sing up.html">Sing up</a>
</body>
</html>
 

Technopat Haberler

Yeni konular

Yeni mesajlar

Geri
Yukarı