Skip to content

Commit

Permalink
Merge pull request #1388 from hypersign-protocol/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
Vishwas1 authored Jun 27, 2022
2 parents 71b5d20 + 1a5cbe5 commit 3254fc8
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 29 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@
</div>

<div>
<div class="row g-3 align-items-center w-100 mt-4" >
<div class="row g-3 align-items-center w-100 mt-4" v-if="!prize">
<div class="text-left col-lg-3 col-md-3 text-left">
<label for="type" class="col-form-label"
>Type<span style="color: red">*</span>:
Expand Down
2 changes: 1 addition & 1 deletion src/components/participant/Action.vue
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ export default {
}
let headers = {
"Content-Type": "application/json",
Authorization: `Bearer ${this.authToken}`,
Authorization: `Bearer ${localStorage.getItem("authToken")}`,
"sig-ts":ts,
"x-payload-hf-sign":sig
Expand Down
45 changes: 18 additions & 27 deletions src/views/Invitation.vue
Original file line number Diff line number Diff line change
@@ -1,36 +1,22 @@
<template>
<div class="body">
<div class="row header">
<div class="col-md-4">
</div>
<!-- <div class="col-md-8">
<button class="btn btn-default btn-lg">
<a href="/app" target="_blank">Try Now</a>
</button>
</div> -->
</div>
<div class="row content">
<div class="col-md-12">
<img class="align-center" style="margin-bottom: 20px" width="auto" height="auto"
src="../assets/Fyre_Gold_Black.png" />
<div class="typewriter">
<h4>Viral Marketing Tools For Web3</h4>
</div>
<button class="btn btn-default btn-lg" style="margin-top:2%">
<img class="align-center" style="margin-bottom: 20px; height: 80px" width="auto" height="auto"
src="../assets/Fyre_Gold_Black.png"/>
<!-- <div>
<h4>
</h4>
</div> -->
<p>
You can close this tab now and go back to the Fyre <a href="/app" target="_blank">admin
dashboard</a>
</p>
<!-- <button class="btn btn-default btn-lg" style="margin-top:2%">
<a href="/app" target="_blank">Click here to Login to admin dashboard</a>
</button>
</button> -->
</div>
</div>
<!-- <div class="row footer">
<div class="col-md-4">
<span>Powered By</span>
<img
:src="require(`../assets/footerLogo.png`)"
style="max-width: 100px;"
/>
</div>
<div class="col-md-8"></div>
</div> -->
</div>
</template>
<script>
Expand Down Expand Up @@ -85,6 +71,11 @@ methods:{
to { width: 40% }
}
a {
color: black;
text-decoration: underline;
}
/* The typewriter cursor effect */
@keyframes blink-caret {
from, to { border-color: transparent }
Expand All @@ -93,7 +84,7 @@ methods:{
.body{
background: whitesmoke;
background: whitesmoke;;
color: black;
height: 100%;
top: 0px;
Expand Down

0 comments on commit 3254fc8

Please sign in to comment.