-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignupfarmer.html
29 lines (29 loc) · 1.07 KB
/
signupfarmer.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
<!DOCTYPE html>
<html>
<head>
<title>Signup as Farmer</title>
<link rel="stylesheet" href="signup.css">
</head>
<body>
<div class="header">
<img src="images/Logo_Final.PNG" alt="logo" />
<h1>Farm-Easy</h1>
</div>
<div class="loginbox">
<h1>Signup Here</h1>
<form>
<p>Name</p>
<input type="text" name="" placeholder="Eg. john" required>
<p>Username</p>
<input type="text" name="" placeholder="Eg. john123" required>
<p>Password</p>
<input type="password" name="" placeholder="Eg. 123456" required>
<p>Confirm Password</p>
<input type="password" name="" placeholder="Eg. 123456" required>
<input type="submit" name="" value="Signup">
<a href="index.html">All Ready have account?</a><br>
<a href="signupinvestor.html">Signup as Investor</a>
</form>
</div>
</body>
</html>