25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <!DOCTYPE html>
- <html>
- <title>W3.CSS</title>
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
- <body>
-
- <form action="/action_page.php" class="w3-container w3-card-4 w3-light-grey w3-text-blue w3-margin">
- <h2 class="w3-center">Reģistrēties</h2>
-
- <div class="w3-row w3-section">
- <div class="w3-col" style="width:50px"><i class="w3-xxlarge fa fa-user"></i></div>
- <div class="w3-rest">
- <input class="w3-input w3-border" name="vards" type="text" autocomplete="off" required placeholder="Vārds">
- </div>
- </div>
-
- <div class="w3-row w3-section">
- <div class="w3-col" style="width:50px"><i class="w3-xxlarge fa fa-user"></i></div>
- <div class="w3-rest">
- <input class="w3-input w3-border" name="uzvards" type="text" autocomplete="off" required placeholder="Uzvārds">
- </div>
- </div>
-
- <div class="w3-row w3-section">
- <div class="w3-col" style="width:50px"><i class="w3-xxlarge fa fa-envelope-o"></i></div>
- <div class="w3-rest">
- <input class="w3-input w3-border" name="epasts" type="text" autocomplete="off" required placeholder="epasts">
- </div>
- </div>
-
- <div class="w3-row w3-section">
- <div class="w3-col" style="width:50px"><i class="w3-xxlarge fa fa-phone"></i></div>
- <div class="w3-rest">
- <input class="w3-input w3-border" required name="telefons" autocomplete="off" type="text" placeholder="Telefona nr.">
- </div>
- </div>
-
- <div class="w3-row w3-section">
- <div class="w3-col" style="width:50px"><i class="w3-xxlarge fa fa-lock"></i></div>
- <div class="w3-rest">
- <input class="w3-input w3-border" name="parole" autocomplete="off" type="password" required>
- </div>
- </div>
-
- <p class="w3-center">
- <button class="w3-button w3-section w3-blue w3-ripple"> Reģistrēties </button>
- </p>
- </form>
-
- </body>
- </html>
|