Generation

生成一个登陆界面

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>登陆界面</title> </head> <body> <div class="container"> <form action=""> <div class="form-group"> <label for="username">用户名</label> <input type="text" class="form-control" id="username" placeholder="用户名"> </div> <div class="form-group"> <label for="password">密码</label> <input type="password" class="form-control" id="password" placeholder="密码"> </div> <div class="form-group"> <button class="btn btn-primary">登陆</button> </div> </form> </div> </body> </html>

Want to kickstart your project?Use the new AI Studio to create your code