blob: f0a110c6b266d12763c6a4ac06bcb68421748573 (
plain)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title><?=SITE_TITLE?> - Εγγραφή</title>
<?php // header includes
////////////////////////////////////////////////////////////////////////
Render::view('components/header_includes');
?>
<style>
html,body{
padding:0; margin:0;
font-size:1.25em;
color: #037; background: #eee;
line-height:1.2em;
}
h3 {
font-size: 2em; font-style: normal;
font-weight: 400;
color: #05a;
margin: 0; padding: 5px;
opacity: 0.27;
border-bottom: 1px solid #05a;
}
.container { display: flex; height: 100vh; align-items:center; }
.content { position: relative;
max-width:480px; width: 100%;
margin: auto auto; padding: .5em;
justify-center: center;
font-size: .9em;
}
.content-form {
padding: 1.5em;
background: #ddd;
border-radius: 8px;
box-shadow: 1px 5px 7px #7777;
}
.content .info { padding: 1.5em; font-size: .92em; }
.content .info p { padding: .5em; }
.form-label { margin-bottom: .25rem; }
</style>
</head>
<body class="classroom">
<div class='container'>
<div class="content">
<div class="info">
<h4>Classroom: Εγγραφή</h4>
</div>
<div class='content-form'>
<form method="post">
<div>
<div class="mb-3">
<label for="name" class="form-label">Όνομα</label>
<input type="text" class="form-control form-control-sm" name="name" required>
</div>
<div class="mb-3">
<label for="surname" class="form-label">Επίθετο</label>
<input type="text" class="form-control form-control-sm" name="surname" required>
</div>
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label">Email</label>
<input type="email" class="form-control form-control-sm" name="email" aria-describedby="emailHelp" rerquired>
</div>
<div class="mb-3">
<label for="exampleInputPassword1" class="form-label">Κωδικός Πρόσβασης</label>
<input type="password" class="form-control form-control-sm" name="password" required>
</div>
<div class="mb-3">
<label for="exampleInputPassword2" class="form-label">Επιβεβαίωση Κωδικού Πρόσβασης</label>
<input type="password" class="form-control form-control-sm" name="password2" required>
</div>
<br />
<button type="submit" class="btn btn-primary btn-sm col-12">Εγγραφή</button>
</div>
</form>
</div>
<div class="info">
<p>Αν έχετε ήδη λογαρισμό <a href="/login">συνδεθείτε</a>.</p>
<p>Σε κάθε περίπτωση μπορείτε να επιστρέψετε στην <a href="/">αρχική σελίδα</a>.</p>
</div>
</div>
</div>
</body>
<script>
// When form is submited
// -------------------------------------------------------------------------
$('.content-form form').submit( event => {
event.preventDefault();
if ($('input[name=password]').val() != $('input[name=password2]').val()) {
alert('Τα δυο passrods δεν ταιριάζουν!');
} else {
// prepare data to POST
var data = {
name: $('input[name=name]').val(),
surname: $('input[name=surname]').val(),
email: $('input[name=email]').val(),
password: $('input[name=password]').val()
};
// select action url (add or update)
var request = '/account/register';
// send POST request
$.post(request, data)
.done(function( data ) {
$('.classroom .content-form').html(data.message)
});
}
});
</script>
</html>
|