-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
30 lines (25 loc) · 1021 Bytes
/
signup.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>tamagotchi</title>
<link href="css/signup.css" rel="stylesheet" type="text/css" />
<link rel="icon" type="image/x-icon" href="/assets/ui/idle.ico">
</head>
<body>
<img src="assets/index/title.png" class="titleimg"></img>
<form id="register">
<label for="email">E-mail address: </label>
<input id="email" type="email">
<label for="password">Password: </label>
<input id="password" type="password">
<label for="owner-name">Owner Name: </label>
<input id="owner-name" type="text" pattern="[a-zA-Z0-9 ]{3,32}" title="3 to 32 characters from A-Z, 0-9, and space">
<label for="pet-name">Pet Name: </label>
<input id="pet-name" type="text" pattern="[a-zA-Z0-9 ]{3,32}" title="3 to 32 characters from A-Z, 0-9, and space"> <br/>
<input class="submit-button" type="submit"></input>
</form>
<script src="js/signup.js" type="module"></script>
</body>
</html>