-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup1.blade.php
57 lines (55 loc) · 1.17 KB
/
signup1.blade.php
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
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
input[type=text], select, textarea{
width: 25%;
height: 40px;
text-align: center;
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
resize: vertical;
padding: 12px 12px 12px 0;
display: inline-block;
}
/* Style the label to display next to the inputs */
/* Style the submit button */
body{
background-color: lightblue;
}
button[type=submit] {
background-color: blue;
color: white;
padding: 12px 20px;
border: 3px;
border-radius: 4px;
cursor: pointer;
float: center;
}
</style>
</head>
<body>
<center>
<form action="signup" method="post">
@csrf
<input type="text" name="name" placeholder="Enter name"><br><br>
<input type="text" name="email" placeholder="Enter Email">
@error('email')
<div>{{$message}}</div>
@enderror
<br><br>
<input type="text" name="address" placeholder="Enetr Address"><br><br>
<input type="text" name="password" placeholder="Enetr password">
@error('password')
<div>{{$message}}</div>
@enderror
<br>
<br>
<br>
<button type="submit">Register</button>
</form>
</center>
</body>
</html>