mirror of
https://github.com/anatolykopyl/registration.git
synced 2026-03-26 12:55:25 +00:00
Moved public files to separate folder and added .env
This commit is contained in:
25
public/index.html
Normal file
25
public/index.html
Normal file
@@ -0,0 +1,25 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="style.css">
|
||||
<title>Registration</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Register</h1>
|
||||
<form action="http://localhost:3000/register" method="GET">
|
||||
<span class="input_row">Username: <input name="login" type="text"></span>
|
||||
<span class="input_row">Password: <input name="pass" type="password"></span>
|
||||
<input type="submit" value="Register">
|
||||
</form>
|
||||
|
||||
<h1>Login</h1>
|
||||
<form action="http://localhost:3000/login" method="GET">
|
||||
<span class="input_row">Username: <input name="login" type="text"></span>
|
||||
<span class="input_row">Password: <input name="pass" type="password"></span>
|
||||
<input type="submit" value="Login">
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user