forked from vinhweb/chat_app_php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
51 lines (44 loc) · 1.52 KB
/
index.php
File metadata and controls
51 lines (44 loc) · 1.52 KB
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
<?php
include_once "part/header.php";
?>
<body>
<div class="wrapper">
<section class="form signup">
<header>Chatapp Realtime</header>
<form action="#">
<div class="error-text"></div>
<!-- name row -->
<div class="name-details">
<div class="field input">
<label for="">Tên</label>
<input type="text" name="fname" placeholder="Tên" required>
</div>
<div class="field input">
<label for="">Họ</label>
<input type="text" name="lname" placeholder="Họ" required>
</div>
</div>
<div class="field input">
<label for="">Email</label>
<input type="text" name="email" placeholder="Nhập Email" required>
</div>
<div class="field input">
<label for="">Mật khẩu</label>
<input type="password" name="password" placeholder="Nhập mật khẩu" required>
<i class="fas fa-eye"></i>
</div>
<div class="field image">
<label for="">Ảnh đại diện</label>
<input type="file" name="image" accept="image/x-png,image/jpeg,image/jpg" required>
</div>
<div class="field button">
<input type="submit" value="Bắt đầu Chat">
</div>
</form>
<div class="link">Đã có tài khoản? <a href="login.php">Đăng nhập ngay</a></div>
</section>
</div>
<script src="assets/password-event.js"></script>
<script src="assets/signup.js"></script>
</body>
</html>