Projekt-Pracownia_Programow.../templates/register.html

30 lines
1.1 KiB
HTML
Raw Normal View History

2023-02-01 20:00:46 +01:00
<html>
<head>
<title>Rejestracja</title>
<script type="text/javascript" src="{{ url_for('static', filename = 'js/validateForm.js') }}">
</script>
</head>
<body>
<form action="/register" method="POST" onsubmit="return validate()">
<p>Email: <input type="email" name="email"></p>
<P>Hasło: <input type="password" name="password" id="password" required></p>
<p>Powtórz Hasło: <input type="password" name="cpassword" id="cpassword"></p>
<p>Imię: <input type="text" name="firstName"></p>
<p>Nazwisko: <input type="text" name="lastName"></p>
<p>Adres Line 1: <input type="text" name="address1"></p>
<p>Adres Line 2: <input type="text" name="address2"></p>
<p>Kod pocztowy: <input type="text" name="zipcode"></p>
<p>Miasto: <input type="text" name="city"></p>
<p>Ulica: <input type="text" name="state"></p>
<p>Kraj: <input type="text" name="country"></p>
<p>Numer telefonu: <input type="text" name="phone"></p>
<p><input type="submit" value="Register"></p>
<a href="/loginForm">Zaloguj się tutaj</a>
</form>
</body>
</html>