-
Notifications
You must be signed in to change notification settings - Fork 3
/
petinfo.php
139 lines (113 loc) · 3.23 KB
/
petinfo.php
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/petinfo.css">
<link href="https://fonts.googleapis.com/css?family=Catamaran|Poiret+One" rel="stylesheet">
</head>
<header>
<h1><a href="index.html"><img src="images/Logo.png" class="logo"></a>
<a href="shopping/cart.php"><img src="images/shopping-cart-icon-30.png" class="cart"></a>
<div class="text"><a href="shopping">free shipping, no minimum<br> on hundreds of items! ></div>
</h1>
<h2>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about us.html">About Us</a></li>
<li class="dropdown">
<a href="javascript:void(0)" class="dropbtn">User</a>
<div class="dropdown-content">
<a href="login.php">Login</a>
<a href="petinfo.php">Register</a>
<a href="myaccounts.php">My Account</a>
</div>
</li>
<li><a href="shopping">Shop</a></li>
<li><a href="petclinic.html">Pet Clinic</a></li>
<li><a href="contactus.html">Contact Us</a></li>
</ul>
</h2>
</header>
<body>
<form action="signup.php" method="post" >
<br>
User ID:<br>
<input type="text" name="username" id="username">
<br><br>
Password:<br>
<input type="password" name="password" id="password">
<br><br>
<fieldset>
<legend><b>Owner Information:</b></legend>
First Name:<br>
<input type="text" name="firstname">
<br><br>
Last name:<br>
<input type="text" name="lastname">
<br><br>
<b>Address:</b><br><br>
House Number:<br>
<input type="text" name="housenumber">
<br><br>
Street:<br>
<input type="text" name="street">
<br><br>
Pin Code:<br>
<input type="number" name="num" size="6">
<br><br>
Phone number:<br>
<input type="tel" name="urstel">
<br><br>
Email Id:<br>
<input type="email" name="email">
<br><br>
</fieldset>
<br>
<fieldset>
<legend><b>Pet Information:</b></legend>
Name of Pet:<br>
<input type="text" name="petname">
<br><br>
Gender:<br><br>
<input type="radio" name="gender" value="Male">Male<br><br>
<input type="radio" name="gender" value="Female">Female<br>
<br>
Age:<br>
<input type="number" name="age">
<br><br>
Type:<br>
<select name="type">
<option value="Cat" name="type" id="cat">Cat</option>
<option value="Dog" name="type" id="dog">Dog</option>
</select>
<br><br>
Breed:<br>
<select name="breed">
<option value="American Bobtail" name="breed">American Bobtail</option>
<option value="German Shepherd">German Shephard</option>
<option value="Golden Retriever">Golden Retriever</option>
<option value="Indian Pariah">Indian Pariah</option>
<option value="Maine Coon">Maine Coon</option>
<option value="Persian">Persian</option>
<option value="Pugs">Pugs</option>
<option value="Rottweiler">Rottweiler</option>
<option value="Saint Bernard">Saint Bernard</option>
<option value="Siamese">Siamese</option>
</select>
<br><br>
</fieldset>
<br><br>
<input type = "submit" value = " submit " id="btn"><br />
<br><br>
</form>
</body>
<footer>
<a href="http://www.facebook.com/pawsandclaws">
<img src="images/facebook-wrap.png" alt="facebook logo" class="social-icon" id="fb">
</a>
<a href="http://www.twitter.com/pawsandclaws">
<img src="images/twitter-wrap.png" alt="twitter logo" class="social-icon" id="twitter">
</a>
<p id='footer'>© 2017 Paws and Claws</p>
</footer>
</html>