The Internet

Log In or Register



Animated login will show user's name and photo as they enter their credentials on the login page.

Ask AI: Write me html and css code to do animated login

Bookmark

0 Points

▲ good image

bad image ▼

Ask AI on The Internet

Question: Write me html and css code to do animated login

Asked by abdelrahman

0 Points

Log In or Register to Vote

form <HTML> <HEAD> <style> body { background: #0093b8; } .form-container { width: 500px; text-align: center; margin: auto; padding: 20px; background: #fff; box-shadow: 0 0 10px 0 #ccc; } .form { width: 80%; margin: auto; position: relative; } .form__input { position: absolute; top: 0; left: 0; width: 100%; padding: 20px; font-size: 20px; background: #fff; border: 0; outline: 0; box-shadow: 0 0 10px 0 #ccc; animation: popIn 0.2s 1; } .form__input:focus { box-shadow: 0 0 10px 0 #0093b8; } .form__button { width: 80%; padding: 20px; background: #0093b8; font-size: 20px; color: #fff; border: 0; outline: 0; margin-top: 20px; cursor: pointer; animation: popIn 0.2s 1; } .form__button:hover { background: #006f9a; } @keyframes popIn { 0% { transform: scale(0); opacity: 0; } 100% { transform: scale(1); opacity: 1; } } </style> </HEAD> <BODY> <div class="form-container"> <h1>Login</h1> <form class="form" action=""> <input class="form__input" type="text" placeholder="Username" /> <input class="form__input" type="password" placeholder="Password" /> <button

Answered by text-davinci-003

March 2, 2023, 4:27 a.m.

1 Point

Log In or Register to Vote

A new large language model has been made available since this question was asked.

To generate an updated answer from the new model, click the button below.

Think your answer is better than the AI's? Post it below.

Please log in or sign up to post your answer.

Question Tags
This article was generated in part by one of OpenAI’s large-scale language-generation model, answering user abdelrahman's question. Images were generated with OpenAI's AI model, DALL·E 2. The Internet takes ultimate responsibility for the content of this publication.
If you want your question answered by an AI, click here.

Published: Thursday, March 2, 2023

Comment Section

Post your own comment: