-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmyproj.html
133 lines (96 loc) · 4.16 KB
/
myproj.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
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
<!DOCTYPE html>
<html>
<head>
<title>my project</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width , initial-scale=1">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!-- Popper JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="myproj.css">
</head>
<body>
<h1 class="head"><b>College Predictor</b></h1>
<br>
<center>
<img src="img1.png" class="img-thumbnail, mx-auto d-block, img-fluid" alt="College predictor icon" width="400px" height="400px">
</center>
<br>
<h2>Please Sign in</h2>
<form>
<center>
<div class="form-group">
<label class="user" for="exampleInputEmail1"></label>
<!--include email @ restrictions and make the sign in button say fill the details before submitting-->
<input type="text" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="Enter username or Email" required autofocus>
</div>
<div class="form-group">
<label for="exampleInputPassword1"></label>
<input type="password" class="form-control" id="exampleInputPassword1" placeholder="Enter Password" required>
</div>
<div class="form-group form-check">
<input type="checkbox" class="form-check-input" id="exampleCheck1">
<label class="form-check-label" for="exampleCheck1">Remember me</label>
</div>
</center>
</form>
<center>
<form action="myproj3.html" target="_blank">
<input type="submit" name="submit" value="Sign In" class="btn btn-primary" id="b1"/>
</form>
</center>
<center>
<p class="acc"><u>New to College Predictor?</u></p>
</center>
<center>
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#myModal">
Create account
</button>
</center>
<!-- The Modal -->
<div class="modal fade" id="myModal">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<!-- Modal Header -->
<div class="modal-header">
<center><h2 class="modal-title">Sign up</h2></center>
</div>
<!-- Modal body -->
<div class="modal-body">
<form>
<div class="form-group">
<label for="exampleInputEmail1">Email</label>
<input type="text" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="Enter Email">
</div>
<div class="form-group">
<label for="exampleInputEmail1">Username</label>
<input type="text" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="Enter username">
</div>
<div class="form-group">
<label for="exampleInputPassword1">Password</label>
<input type="password" class="form-control" id="exampleInputPassword1" placeholder="Password">
</div>
<div class="form-group form-check">
<input type="checkbox" class="form-check-input" id="exampleCheck1">
<label class="form-check-label" for="exampleCheck1">Remember me</label>
</div>
</form>
</div>
<!-- Modal footer -->
<div class="modal-footer">
<form action="myproj3.html" target="_blank">
<input type="submit" name="submit" value="Create account" class="btn btn-primary"/>
</form>
<button type="button" class="btn btn-danger" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<br>
</body>
</html>