-
Notifications
You must be signed in to change notification settings - Fork 0
/
avatar.php
36 lines (36 loc) · 1.04 KB
/
avatar.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
<!DOCTYPE html>
<html>
<head>
<title>修改头像</title>
<body>
<?php
require_once "include/nav.php";
?>
<?php require('include/start.php');islogin(); ?>
<script src="https://cdn.staticfile.org/angular.js/1.4.6/angular.min.js"></script>
</head>
<div class="alert alert-warning alert-dismissable">
<button type="button" class="close" data-dismiss="alert"
aria-hidden="true">
×
</button>
输入你的头像链接!
</div>
<div style="padding: 10px 10px 10px;">
<form method="post" action="cgavatar.php" class="bs-example bs-example-form" role="form">
<div class="row">
<div class="col-lg-6">
<div class="input-group">
<input id="avatar" name="avatar" style="width: 250px;" type="text" class="form-control">
<span class="input-group-btn">
<button class="btn btn-default">
提交
</button>
</span>
</div><!-- /input-group -->
</div><!-- /.col-lg-6 -->
</div><!-- /.row -->
</form>
</div>
</body>
</html>