blob: 837985d8a5c37fb0bcea459bb6761ca1522d3c06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<div class="text-center">
<i id="form-loading" class="glyphicon glyphicon-refresh"></i>
</div>
<style type="text/css">
@keyframes rotating {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
#form-loading {
animation: rotating 1s linear infinite;
}
</style>
|