forked from cleverbot026/activity_forms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFormm.html
More file actions
47 lines (31 loc) · 1.3 KB
/
Formm.html
File metadata and controls
47 lines (31 loc) · 1.3 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Formm</title>
<link rel="stylesheet" href="tf.css">
</head>
<body>
<section class="form">
<div class="form-title">
<buttons><a class="buttons" href="ProfilePage.html">Profile</a></buttons>
<h2>Login</h2>
<center>
<a class="buttons" href="https://en-gb.facebook.com/login/">Facebook</a>
<a class="buttons" href="https://accounts.google.com/ServiceLogin/signinchooser?service=mail&passive=true&rm=false&continue=https%3A%2F%2Fmail.google.com%2Fmail%2F&ss=1&scc=1<mpl=default<mplcache=2&emr=1&osid=1&flowName=GlifWebSignIn&flowEntry=ServiceLogin">Gmail</a>
</center>
</div>
<div class="form-body">
<form name="contactForm" action="#" method="get"> <!-- get - post -->
<!-- <label for="txtName">Username</label> -->
<input type="text" name="txtName" placeholder="Username" required> <input type="email" name="txtEmail" placeholder="Email"> <input type="password" name="txtPass" placeholder="Password" required>
</select>
<input type="checkbox" name="chkAgree" value="Agree"> <label for="chkAgree">I agree to the terms and conditions.</label>
<div class="btns">
<input type="submit" value="Submit" name="btnSubmit">
<input type="reset" value="Clear" name="btnClear">
</div>
</form>
</div>
</section>
</body>
</html>