-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
160 lines (159 loc) · 6.38 KB
/
contact.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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/5.0.0-alpha1/css/bootstrap.min.css"
integrity="sha384-r4NyP46KrjDleawBgD5tp8Y7UzmLA05oM1iAEQ17CSuDqnUK2+k9luXQOfXJCJ4I"
crossorigin="anonymous"
/>
<title>Επικοινωνία</title>
<link rel="stylesheet" href="/css/contact.css" />
</head>
<body
style="
color: rgb(230, 230, 230);
background: linear-gradient(to right, #232526, #414345);
"
>
<!-- NAVBAR -->
<nav
class="navbar navbar-expand-md navbar-dark"
style="background-color: #2020227e; color: aliceblue;"
>
<div class="container-fluid">
<a
href="/index.html"
style="text-decoration: none; color: aliceblue;"
><span class="navbat-text" style="font-size: larger;"
>Codeminati</span
></a
>
<a href="/index.html" class="navbar-brand mr-auto p-1"> </a>
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#links"
>
<span class="navbar-toggler-icon"></span>
</button>
<div id="links" class="collapse navbar-collapse">
<ul class="navbar-nav ml-auto">
<li
style="font-size: larger;"
class="nav-item dropdown active mr-5 p-2 rounded"
>
<a
style="text-decoration: none; color: aliceblue;"
id="dropdown"
data-toggle="dropdown"
aria-expanded="true"
class="class-link dropdown-toggle p-2"
>Γλώσσες</a
>
<ul
class="dropdown-menu"
aria-labelledby="dropdown"
>
<li class="dropdown-item">
<a href="/javascript.html" class="p-1"
>Javascript</a
>
</li>
<li class="dropdown-item">
<a href="/python.html" class="p-1"
>Python</a
>
</li>
</ul>
</li>
<li
style="font-size: larger;"
class="nav-item mr-5 p-2 rounded"
>
<a
style="text-decoration: none; color: aliceblue;"
href="/team.html"
class="class-link p-2"
>Ομάδα</a
>
</li>
<li
style="font-size: larger;"
class="nav-item mr-5 p-2 rounded"
>
<a
style="text-decoration: none; color: aliceblue;"
href="/contact.html"
class="class-link p-2"
>Επικοινωνία</a
>
</li>
</ul>
</div>
</div>
</nav>
<!-- FORM -->
<div class="container mt-5">
<h3 class="text-center">Συμπλήρωσε την φόρμα με το e-mail σου</h3>
<h3 class="text-center">
Και βοήθησε στο έργο μας στέλνοντας πηγές,
</h3>
<h3 class="text-center">
που θες να κοινοποιήσουμε...
</h3>
</div>
<div class="container">
<form action="" method="">
<div class="form-group mt-5">
<label
id="label-1"
class="form-label text-center"
for="username"
>E-mail</label
>
<input
id="username"
class="form-control"
type="email"
aria-describedby="emailHelp"
required
/>
<label
id="label-2"
for="textarea"
class="form-label mt-5 text-center"
>
Το μήνυμά σου</label
>
<textarea
class="form-control"
required
rows="4"
name="textarea"
id="textarea"
></textarea>
<button
class="text-center mt-5 m-auto d-block btn btn-primary"
type="submit"
>
Submit
</button>
</div>
</form>
</div>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo"
crossorigin="anonymous"
></script>
<script
src="https://stackpath.bootstrapcdn.com/bootstrap/5.0.0-alpha1/js/bootstrap.min.js"
integrity="sha384-oesi62hOLfzrys4LxRF63OJCXdXDipiYWBnvTl9Y9/TRlw5xlKIEHpNyvvDShgf/"
crossorigin="anonymous"
></script>
</body>
</html>