-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFormulir.html
98 lines (92 loc) · 4.36 KB
/
Formulir.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<title>Form Pendaftaran</title>
<style>
body {
background-image: url('img.jpg');
background-size: cover; /* Mengatur gambar agar menutupi seluruh latar belakang */
background-repeat: no-repeat; /* Mencegah gambar berulang */
background-attachment: fixed; /* Memastikan gambar tidak bergeser saat menggulir */
}
.container {
max-width: 710px;
margin: 50px auto;
background-color: #ffffff;
padding: 50px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
</style>
</head>
<body>
<div class="container">
<h5 class="alert alert-primary text-center mt-1"><small><b>FORMULIR PENDAFTARAN</b></small></h5>
<form action="">
<div class="form-group">
<label for="">Nama lengkap :</label>
<input type="text" name="" id="" class="form-control" checked placeholder="Masukan nama lengkap anda">
</div><br>
<div class="form-group">
<label for="">Email :</label>
<input type="email" name="email" id="" class="form-control" placeholder="Masukan email anda">
</div><br>
<div class="form-group">
<label for="">Password :</label>
<input type="password" name="password" id="" class="form-control" placeholder="Masukan password anda">
<small><i>Password harus terdiri dari huruf dan angka!</i></small>
</div><br>
<div class="row">
<div class="col-md-8">
<div class="form-group">
<label for="">Tempat Lahir :</label>
<input type="text" name="" id="" class="form-control" placeholder="Masukan tempat lahir anda">
</div>
</div><br>
<div class="col-md-4">
<div class="form-group">
<label for="">Tanggal Lahir :</label>
<input type="date" name="" id="" class="form-control">
</div>
</div>
</div><br>
<div class="form-group">
<label for="">Jenis Kelamin : </label><br>
<div class="form-check-inline">
<input type="radio" name="jk" id="l" class="form-check-inline">
<label for="l">Laki-laki</label>
</div>
<div class="form-check-inline">
<input type="radio" name="jk" id="p" class="form-check-inline">
<label for="p">Perempuan</label>
</div>
</div><br>
<div class="form-group">
<label for="">Pilih Jurusan :</label>
<select name="" id="" class="form-control">
<option value="">1. Teknik informatika</option>
<option value="">2. Teknologi informasi</option>
<option value="">3. Sistem informasi</option>
<option value="">4. Teknik elektro</option>
</select>
</div><br>
<div class="form-group">
<label for="">Alasan memilih kampus ini :</label>
<textarea name="" id="" class="form-control" rows="3"></textarea>
</div><br>
<fieldset>
<div class="form-group">
<label for="">Upload Document :</label>
<input type="file" name="" id="" class="form-control-file">
<small><i>Upload file maksimal 5 MB</i></small>
</div><br>
<button type="submit" class="btn btn-primary">SIMPAN</button>
<button type="reset" class="btn btn-danger">RESET</button>
</form>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
</body>
</html>