Infinity Forum
Christian Engineering Solutions (CES) is a Not for Profit Organization specializing in collaborative solutions development for the Church. In the Spirit of Jesus Christ, we are to spread the gospel throughout the Earth, taking care to be good examples of Christ Jesus by serving others. CES is designed to help the Church meet these goals in the most rigorous manner possible.
Our Technology is scripture based in its goals and foundations. Open-Source and Free, one may use our services to both learn and solve problems with the goals of helping others and growing closer to God.
<div>
<%if(profile.thumbnail != '' && profile.thumbnail != null){%>
<img style="width:75px;"id="profile_settings_image" src="/uploads/<%=profile.thumbnail%>">
<%}else{%>
<ion-icon id="profile_page_image"src="/images/ionicons/person-circle-outline.svg"></ion-icon>
<%}%>
</div>
<form id="update_profile_picture"action="/change_profile_picture/" method="POST" enctype="multipart/form-data">
<input type="file" accept="image/*"id="upload_profile_photo"name="photo"autocomplete="off"/>
<br><br>
<button id="change-photo">Change</button>
</form>
<p><%=profile.username%></p>
<a target="_blank"href="/stripeAuthorize">Get Paid (<%=profile.stripeOnboardingComplete == true ? "Active" : "Inactive"%>)</a>
<br><br>
<form id="settings_form" action="/update_settings/" method="POST">
<input name="oldUsername"id="oldUsername"type="hidden"value="<%=profile.username%>" />
<input name="oldName"id="oldName"type="hidden"value="<%=profile.name%>" />
<input name="newUsername"id="newUsername"type="hidden"value="<%=profile.username%>" />
<div>
Username: <span id="register_username_load"><%=profile.username%></span>
<br>
<label>Name:</label>
<input id="register_username" type="text" value="<%=profile.name%>"name="name"autocomplete="off" required/>
</div>
<div>
<label>Email:</label>
<input placeholder="Recommended" id="register_email" value="<%=profile.email%>"type="text" name="email"autocomplete="off"/>
</div>
<div>
<label>New Password:</label>
<input id="register_password" value=""type="password" name="password"autocomplete="off"/>
</div>
<div>
<label>Confirm New Password:</label>
<input id="register_confirm" type="password" name="passwordConf"autocomplete="off"/>
</div>
<div>
<label>Old Password:</label>
<input id="register_confirm" type="password" name="oldPassword"autocomplete="off"/>
</div>
<!-- <div>
<label>Developer Mode (Advanced):</label>
<input id="register_confirm" type="checkbox" name="passwordConf"autocomplete="off"/>
</div> -->
<div>
<input id="register_button"type="submit" value="Update"/>
</div>
</form>