summaryrefslogtreecommitdiff
path: root/static/group-form-loading.html
diff options
context:
space:
mode:
Diffstat (limited to 'static/group-form-loading.html')
-rw-r--r--static/group-form-loading.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/static/group-form-loading.html b/static/group-form-loading.html
new file mode 100644
index 0000000..837985d
--- /dev/null
+++ b/static/group-form-loading.html
@@ -0,0 +1,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>