-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.php
16 lines (16 loc) · 871 Bytes
/
signup.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<section class="signup-form">
<h2>Sign up</h2>
<div class="signup-form-form">
<form action="includes/signup.inc.php" method="post">
<input type="text" name="name" placeholder="Full name...">
<input type="text" name="email" placeholder="E-mail adresse...">
<input type="text" name="phone" placeholder="Telefon nummer...">
<input type="text" name="street" placeholder="Addresse...">
<input type="text" name="city" placeholder="By...">
<input type="text" name="uid" placeholder="Brugernavn...">
<input type="password" name="pwd" placeholder="Kodeord...">
<input type="password" name="pwdrepeat" placeholder="Gentag kodeord...">
<button type="submit" name="submit">Sign up</button>
</form>
</div>
</section>