-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcampus.html
More file actions
66 lines (51 loc) · 2.5 KB
/
campus.html
File metadata and controls
66 lines (51 loc) · 2.5 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SignUp Form - MongoDB</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- Basic Page Needs
================================================== -->
<meta name="description" content="Courseplus - Professional Learning Management HTML Template">
<!-- Favicon -->
<link href="assets/images/favicon.png" rel="icon" type="image/png">
<!-- CSS
================================================== -->
<link rel="stylesheet" href="css/css-style-rtl.css">
<link rel="stylesheet" href="css/css-night-mode.css">
<link rel="stylesheet" href="css/css-framework-rtl.css">
<link rel="stylesheet" href="css/css-bootstrap.css">
<!-- icons
================================================== -->
<link rel="stylesheet" href="css/css-icons.css">
<!-- <link rel="stylesheet" type="text/css" href="styles.css"> -->
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-3">
</div>
<div class="col-md-6 main">
<form action="http://localhost:5500/sign_up" method="POST">
<br><br>
<h1>CAMPUS AMBASSADOR REGISTRATION FORM</h1>
Name<br>
<input type="text" class="box" id="name" name="name" placeholder="Enter your name" required />
Email<br>
<input type="text" class="box" id="email" name="email" placeholder="Enter your email" required />
Phone<br>
<input type="text" class="box" id="phno" name="phno" placeholder="Enter your phone number" required />
College Name<br>
<input type="text" class="box" id="college" name="college" placeholder="Enter your college name" required />
<br>
<input class="btn btn-dark" type="submit" value="Submit" id="submit" />
<!-- <input class="btn-xs btn-dark" type="reset" value="Submit" id="submit" /> -->
</form>
</div>
<div class="col-md-3">
</div>
</div>
</div>
</body>
</html>