There is not currently an option to do this.
You could use the Advanced Layout Options and jquery to accomplish this.
If you add this to the very end of your layout file, you this should disable the "Create An Account" link:
- <script type="text/javascript">
- jq("a[href$=editprofile.php]").hide();
- </script>
<script type="text/javascript">
jq("a[href$=editprofile.php]").hide();
</script>
But that will only disable the link. It won't disable it if someone types in the editprofile.php link directly.