-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.html
61 lines (59 loc) · 2.44 KB
/
main.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Welcome</title>
<link rel="stylesheet" href="/Social_Network_Python_Django/_Front/node_modules/normalize.css/normalize.css">
<link rel="stylesheet" href="/Social_Network_Python_Django/_Front/sass/Templates/Header/style.css">
<link rel="stylesheet" href="/Social_Network_Python_Django/_Front/sass/Templates/Footer/style.css">
<link rel="stylesheet" href="/Social_Network_Python_Django/_Front/sass/main/style.css">
<script src="w3.js"></script>
</head>
<body>
<div w3-include-html="/Social_Network_Python_Django/_Front/Pages/Templates/Header.html"></div>
<main class="container FillScreen">
<div class="info">
<h1>
play & share music with mood community
</h1>
<p>
Donec venenatis, nisi non semper venenatis, elit purus semper erat, in consectetur velit justo nec diam.
Nulla ligula facilisi. Nullam auctor nunc ut nisi non semper aliquam.
</p>
</div>
<div class="card">
<form action="">
<div class="description">
<h2>sign in social network</h2>
<p>Donec venenatis, nisi non semper venenatis elt purus semper erat, in consectetur velit usto nec
diam.
</p>
</div>
<div class="DataInput">
<div class="data">
<input type="text" placeholder="Username" required>
<input type="password" placeholder="Password" required>
</div>
<div class="settings">
<div class="checkbox">
<label for="check">
<input type="checkbox" id="check">
<span></span>
<p>Remember Me</p>
</label>
</div>
<a href="#">Forgot Password?</a>
</div>
<div class="submit">
<button type="submit">log in</button>
</div>
</div>
</form>
</div>
</main>
<div w3-include-html="/Social_Network_Python_Django/_Front/Pages/Templates/Footer.html"></div>
<script>
w3.includeHTML();
</script>
</body>
</html>