-
Notifications
You must be signed in to change notification settings - Fork 0
/
enroll.html
65 lines (51 loc) · 2.19 KB
/
enroll.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="style.css">
<title>enroll</title>
<meta charset="UTF-8" />
<meta name="description" content="a full website for the csci 305 cource contain the syllabus and many others">
<meta name="keywords" content="html,css,bootstrap, csci305, liu,project">
<meta name="author" content="Mohammad Omar">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body id="bodyc">
<header>
<h1>CSCI<span>305</span></h1>
<nav>
<a href="index.html">Home</a>
<a href="Syllabus.html">Syllabus</a>
<a class="selected" href="enroll.html">enroll</a>
<a href="online.html">online Sources</a>
</nav>
</header>
<main id="cont">
<p>Log In using you university ID </p>
<a href="enrolled.html" target="_self" onclick="window.open('https://www.liuserver.com/login/','name','width=600,height=400')">
<img src="images/icon.png" alt="liu"></a>
<img id="changePosition" src="images/enroll.png" alt="enroll">
<p id="or">------------------------OR------------------------</p>
<h2>Create an account</h2>
<form action="enrolled.html">
<div class="fle" id="name">
<input type="text" name="firstname" placeholder="first name" required>
<input type="text" name="lastname" placeholder="last name" required>
</div>
<input type="email" name="email" placeholder="your university email" required>
<div id="fle" class="gender">
<p>Gender</p>
<input type="radio" name="gender" value="male" required> Male<br>
<input type="radio" name="gender" value="female"> Female<br>
</div>
<br><br>
<input type="submit" value="Enroll">
</form>
</main>
<footer>
<h3>© Mohammad<span>Omar</span></h3>
<a href="http://www.liu.edu.lb" target="_blank">
<h3 id="right">Lebanese international university</h3>
</a>
</footer>
</body>
</html>