-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreg.html
More file actions
61 lines (53 loc) · 2.65 KB
/
reg.html
File metadata and controls
61 lines (53 loc) · 2.65 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
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>注册</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link href="./css/floating-labels.css" rel="stylesheet" type="text/css"/>
<style>
body{
width:100%;
height:100%;
background: url(./img/temp/20.jpg) no-repeat center center;
background-size: 100% 100%;
}
</style>
</head>
<body>
<!-------------------reg-------------------------->
<div style="width: 1200px;margin: 0 auto">
<div class="d-flex justify-content-end">
<div style="width: 400px;padding-right: 20px">
<div class="text-center mb-4">
<img class="mb-4" src="img/logo.png" alt="" >
<h1 class="h3 mb-3 font-weight-normal">Welcome To Registration!</h1>
</div>
<!--注册选项栏-->
<div class="form-group">
<label for="formGroupExampleInput" style="color:black;font-weight:400;font-size: 18px " >Name</label>
<input type="text" class="form-control" id="formGroupExampleInput">
</div>
<div class="form-group">
<label for="formGroupExampleInput1" style="color:black;font-weight:400;font-size: 18px " >Age</label>
<input type="text" class="form-control" id="formGroupExampleInput1" >
</div>
<div class="form-group">
<label for="formGroupExampleInput0" style="color:black;font-weight:400;font-size: 18px " >Email</label>
<input type="text" class="form-control" id="formGroupExampleInput0">
</div>
<div class="form-group" style="margin-bottom:30px ">
<label for="formGroupExampleInput3" style="color:black;font-weight:400;font-size: 18px">Password</label>
<input type="text" class="form-control" id="formGroupExampleInput3" >
</div>
<!--提交按钮-->
<button class="btn btn-lg btn-primary btn-block" type="submit" >Submit</button>
<p class="mt-5 mb-3 text-muted text-center">© 2018-2020</p>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
</div>
</div>
</div>
</body>
</html>